This commit is contained in:
qijq 2025-06-30 12:32:31 +08:00
parent 228a8360d5
commit 702275cde4
2 changed files with 23 additions and 2 deletions

View File

@ -537,7 +537,7 @@ export default {
handler: function (val, oldVal) {
if (val) {
uni.showLoading({
title: "数据加载中...",
title: "店铺创建中,请稍等...",
mask: true,
});
@ -545,7 +545,7 @@ export default {
uni.hideLoading();
this.$store.commit("audit/BACK_PAGE", false);
this.getAuditInfo();
}, 4000);
}, 40000);
}
},
// immediate: true,
@ -580,6 +580,8 @@ export default {
async getAuditInfo() {
if (this.isContractSigningaPageTo) return;
var params = {};
let isContain = this.userInfo.user_mobile.indexOf("86");
@ -600,6 +602,13 @@ export default {
approval_invalid_col: [],
};
if(this.isPassAudit){
uni.switchTab({
url: "/pages/order/order",
});
return
}
if (!res.data || res.data.approval_status == 4) {
this.showLoading = false;
return;

View File

@ -65,6 +65,9 @@
</picker-view-column>
</picker-view>
</view>
<view class="bottom-content">
</view>
</uni-popup>
</template>
@ -309,6 +312,7 @@ export default {
}
.title {
font-weight: 500;
font-size: 32rpx;
color: #333;
}
@ -356,6 +360,7 @@ export default {
background: #efefef;
margin: 0 16rpx;
border-radius: 24rpx;
height: 80rpx;
}
::v-deep .uni-picker-view-content {
@ -370,5 +375,12 @@ export default {
margin-left: 20rpx;
width: 80%;
font-size: 36rpx;
height: 80rpx;
line-height: 80rpx;
}
::v-deep .picker-view{
height: 60%;
}
</style>