Fix:5844 【商城小程序】【礼品集采中心入驻】商户入驻申请被驳回后页面未显示驳回原因
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
labelWidth="216rpx"
|
labelWidth="216rpx"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
v-if="stateTitle && isDraft!==1"
|
v-if="stateTitle"
|
||||||
class="box-state"
|
class="box-state"
|
||||||
>
|
>
|
||||||
<u-alert
|
<u-alert
|
||||||
@@ -413,24 +413,24 @@ export default {
|
|||||||
if(data.isDraft === null || data.isDraft === 1) {
|
if(data.isDraft === null || data.isDraft === 1) {
|
||||||
this.show = true
|
this.show = true
|
||||||
}
|
}
|
||||||
if (data.isDraft !== 1) {
|
console.log(data.reviewStatus);
|
||||||
switch (data.reviewStatus) {
|
|
||||||
case 0:
|
switch (data.reviewStatus) {
|
||||||
this.stateTitle = '审核中'
|
case 0:
|
||||||
this.stateType = 'primary'
|
this.stateTitle = '审核中'
|
||||||
this.reviewing = true
|
this.stateType = 'primary'
|
||||||
break;
|
this.reviewing = true
|
||||||
case 1:
|
break;
|
||||||
this.stateTitle = '审核通过'
|
case 1:
|
||||||
this.stateType = 'success'
|
this.stateTitle = '审核通过'
|
||||||
this.reviewing = false
|
this.stateType = 'success'
|
||||||
break;
|
this.reviewing = false
|
||||||
case 2:
|
break;
|
||||||
this.stateTitle = '审核驳回:' + data.reviewMsg
|
case 2:
|
||||||
this.stateType = 'error'
|
this.stateTitle = '审核驳回:' + data.reviewMsg
|
||||||
this.reviewing = false
|
this.stateType = 'error'
|
||||||
break;
|
this.reviewing = false
|
||||||
}
|
break;
|
||||||
}
|
}
|
||||||
if (data.wholesalerInfo) {
|
if (data.wholesalerInfo) {
|
||||||
this.form = data.wholesalerInfo
|
this.form = data.wholesalerInfo
|
||||||
@@ -576,7 +576,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less">
|
<style lang="less" scoped>
|
||||||
@import "@/assets/css/pkg_join.less";
|
@import "@/assets/css/pkg_join.less";
|
||||||
|
|
||||||
/deep/ .cityselect-nav {
|
/deep/ .cityselect-nav {
|
||||||
@@ -623,4 +623,7 @@ export default {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.btn-submit{
|
||||||
|
position: sticky !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user