40 lines
610 B
Plaintext
40 lines
610 B
Plaintext
|
|
<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>
|