[抖火客户端]
This commit is contained in:
74
pages/sheet/process.vue
Normal file
74
pages/sheet/process.vue
Normal file
@@ -0,0 +1,74 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<!-- 提示 -->
|
||||
<view class="pack-center process-pack">
|
||||
<img class="process-img" src="@/static/imgs/processGif.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>
|
||||
Reference in New Issue
Block a user