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

View File

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