ufutx_love_mp/src/pages/tabBar/welcome.wpy

40 lines
610 B
Plaintext
Raw Normal View History

2024-08-16 09:14:13 +08:00
<style lang="less">
page {
background-color: #F8F8F8 !important;
}
</style>
<template>
<view></view>
</template>
<!--x-->
<script>
import wepy from '@wepy/core'
import https from '../../mixins/https'
import base from '../../mixins/base'
wepy.page({
config: {},
mixins: [https, base],
data: {},
watch: {},
methods: {},
onLoad() {},
onShow() {
setTimeout(() => {
this.$gotoTab('/pages/tabBar/home')
}, 1000)
},
created() {
}
})
</script>
<config>
{
navigationBarTitleText: '加载中...',
navigationBarBackgroundColor: '#f8f8f8',
enablePullDownRefresh: true,
}
</config>