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.
44 lines
744 B
44 lines
744 B
<template> |
|
<view class="wrap"> |
|
<uni-icons type="checkbox-filled" size="50" color="#4876f9"></uni-icons> |
|
<view class="tips">加入成功</view> |
|
<view class="btn" @click="toLogin">前往登录</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
|
|
} |
|
}, |
|
methods: { |
|
toLogin() { |
|
uni.clearStorageSync() |
|
this.$util.to('/pages/login/login') |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.wrap { |
|
padding: 100rpx 30rpx; |
|
text-align: center; |
|
.tips { |
|
margin: 10rpx 0 30rpx; |
|
font-size: 30rpx; |
|
color: $uni-primary; |
|
} |
|
.btn { |
|
width: 100%; |
|
line-height: 80rpx; |
|
font-size: 30rpx; |
|
text-align: center; |
|
color: #fff; |
|
border-radius: 10rpx; |
|
background-color: $uni-primary; |
|
} |
|
} |
|
</style>
|
|
|