|
|
@@ -5,7 +5,7 @@
|
|
|
完善信息
|
|
|
</view>
|
|
|
<view class="title flex" v-if="status == 2">
|
|
|
- 提示
|
|
|
+ 提 示
|
|
|
</view>
|
|
|
<view class="title flex" v-if="status == 4">
|
|
|
审核不通过
|
|
|
@@ -13,7 +13,10 @@
|
|
|
<view class="content flex" v-if="status == 4">
|
|
|
驳回原因:{{describe}}
|
|
|
</view>
|
|
|
- <view class="content flex" v-else>
|
|
|
+ <view class="content flex" v-if="status == 2">
|
|
|
+ 审核中,请等待...
|
|
|
+ </view>
|
|
|
+ <view class="content flex" v-if="status == 1">
|
|
|
{{describe}}
|
|
|
</view>
|
|
|
|
|
|
@@ -22,10 +25,8 @@
|
|
|
去完善
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="btn flex" v-if="status == 2">
|
|
|
- <view class="add flex" @click="">
|
|
|
- 确定
|
|
|
- </view>
|
|
|
+ <view class=" flex" v-if="status == 2">
|
|
|
+
|
|
|
</view>
|
|
|
<view class="btn between" v-if="status == 4">
|
|
|
<view class="cancel flex" @click="cancel">
|
|
|
@@ -52,10 +53,16 @@ export default {
|
|
|
default: ''
|
|
|
},
|
|
|
},
|
|
|
+ data(){
|
|
|
+ return{
|
|
|
+ show:true
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
// 取消
|
|
|
cancel(){
|
|
|
this.$emit('cutPopup')
|
|
|
+ uni.showTabBar()
|
|
|
},
|
|
|
//去设置
|
|
|
goEdit(){
|
|
|
@@ -80,6 +87,7 @@ export default {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.popup {
|
|
|
@@ -90,7 +98,7 @@ export default {
|
|
|
position: fixed;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
-
|
|
|
+ z-index: 9999999999 !important;
|
|
|
.center {
|
|
|
width: 570rpx;
|
|
|
height: 410rpx;
|
|
|
@@ -104,7 +112,7 @@ export default {
|
|
|
.title {
|
|
|
width: 100%;
|
|
|
height: 86rpx;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: 600;
|
|
|
font-size: 32rpx;
|
|
|
border-bottom: 1px solid #EEEEEE;
|
|
|
}
|