cczg-lottery-activity/pages/simpleshop/notinwl/notinwl.vue

45 lines
750 B
Vue

<template>
<view class="content">
<view>您尚未在本次活动邀请名单内</view>
<view class="wbtn">
<u-button class="button" type="primary" shape="circle" color="#00A8EA" text="重新登录" @click="reLogin"></u-button>
</view>
</view>
</template>
<script>
import {authState} from '@/util/auth.js'
export default {
data() {
return {
}
},
methods: {
reLogin(){
authState.logout()
uni.navigateTo({
url:"/pages/coupons/index/index"
})
}
},
}
</script>
<style>
.content{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
font-size: 48rpx;
font-weight: 600;
}
.wbtn{
margin-top: 300rpx;
width: 80%;
}
</style>