Files
tripellet-merchant/pages/loading/index.vue
2023-06-06 17:11:04 +08:00

36 lines
457 B
Vue

<template>
<view class="s_page">
<image src="/static/img/loading.png" mode=""></image>
</view>
</template>
<script>
export default {
data() {
return {}
},
onLoad() {
let url = url = '/pages/index/index'
setTimeout(() => {
uni.reLaunch({
url
})
},2000)
},
methods: {}
}
</script>
<style scoped lang="scss">
.s_page {
width: 100vw;
height: 100vh;
image {
width: 100%;
height: 100%;
}
}
</style>