You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
752 B
39 lines
752 B
<template>
|
|
<view>
|
|
<view class="start-content">
|
|
<view>
|
|
<image class="images" src="../../static/logo.png" alt="">
|
|
</view>
|
|
<view>
|
|
<text class="app-name">应用名称</text>
|
|
</view>
|
|
</view>
|
|
<view class="load-class">
|
|
<u-loadmore :status="status" :loading-text="loadingText" :loadmore-text="loadmoreText"
|
|
:nomore-text="nomoreText" iconColor="#0079EF" iconSize="50px" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
status: 'loading',
|
|
loadingText: '',
|
|
loadmoreText: '',
|
|
nomoreText: ''
|
|
}
|
|
},
|
|
onShow() {
|
|
setTimeout(() => {
|
|
uni.redirectTo({
|
|
url: '/pages/login/login'
|
|
});
|
|
}, 1000)
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
@import "start.scss";
|
|
</style>
|
|
|