74 lines
1.3 KiB
Vue
74 lines
1.3 KiB
Vue
<template>
|
|
<view class="content">
|
|
<!-- 提示 -->
|
|
<view class="pack-center process-pack">
|
|
<img class="process-img" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/c95ebcf8641fcbd413f990d661f638cb.gif">
|
|
<view class="process-text">
|
|
<view class="process-name">
|
|
资料正在审核中...
|
|
</view>
|
|
<view class="process-tips">
|
|
请您耐心等待,我们会尽快进行审核
|
|
</view>
|
|
</view>
|
|
<view class="process-btn">
|
|
<view class="btn" @click="clickBack">
|
|
知道了
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
onLoad() {},
|
|
methods: {
|
|
// 返回上一页
|
|
clickBack() {
|
|
uni.navigateBack(1)
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.process-pack {
|
|
padding: 0 $padding * 4;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.process-img {
|
|
width: 100%;
|
|
}
|
|
.process-text {
|
|
text-align: center;
|
|
line-height: 68rpx;
|
|
margin-top: $margin;
|
|
.process-name {
|
|
color: $mian-color;
|
|
font-size: $title-size + 8;
|
|
}
|
|
.process-tips {
|
|
font-size: $title-size;
|
|
color: #99a5b4;
|
|
}
|
|
}
|
|
|
|
.process-btn {
|
|
text-align: center;
|
|
margin-top: $margin * 2;
|
|
.btn {
|
|
display: inline-block;
|
|
border: 2rpx solid $mian-color;
|
|
color: $mian-color;
|
|
border-radius: $radius-m;
|
|
width: 100%;
|
|
line-height: 90rpx;
|
|
}
|
|
}
|
|
</style> |