12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <view class="container">
- <view class="re-succ-box">
- <image class="re-succ-img" src="../../static/img/rz-top.png"></image>
- <view class="re-succ-tit">认证提醒</view>
- <view class="re-succ-tip">您尚未认证身份,请立即前往身份认证</view>
- <view class="re-succ-btn" @click="goBack()">确认前往</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- type: 1
- };
- },
- onLoad(opt) {
- if (opt.type) {
- this.type = opt.type;
- }
- },
- methods: {
- goBack() {
- uni.navigateTo({
- url: '/pages/user/vip'
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- height: 100%;
- }
- .container {
- height: 100%;
- background: #ffffff;
- .line-top {
- width: 750rpx;
- height: 20rpx;
- background: #f5f5f5;
- }
- .re-succ-box {
- padding-top: 170rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .re-succ-img {
- margin-left: 30rpx;
- width: 406rpx;
- height: 380rpx;
- display: block;
- }
- .re-succ-tit {
- margin-top: 38rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .re-succ-tip {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- margin-top: 20rpx;
- }
- .re-succ-btn {
- margin-top: 80rpx;
- width: 301rpx;
- height: 78rpx;
- background: #ecd0a9;
- border-radius: 10rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #9a5e19;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- </style>
|