去除 店铺 申请中状态

master
夜良king 2022-12-07 09:58:31 +08:00
parent acc9a0b88a
commit 984bc4b635
2 changed files with 5 additions and 2 deletions

View File

@ -871,7 +871,9 @@
this.$set(this, "storeInfo", res.result);
//switchtruefalse
this.storeInfo.storeDisable = this.storeInfo.storeDisable === "OPEN" ? true : false
this.checkAllGroup = this.storeInfo.goodsManagementCategory.split(",");
if(this.storeInfo.goodsManagementCategory != null){
this.checkAllGroup = this.storeInfo.goodsManagementCategory.split(",");
}
this.storeInfo.legalPhoto = this.storeInfo.legalPhoto.split(",");
});
},

View File

@ -24,7 +24,7 @@
<Select v-model="searchForm.storeDisable" clearable style="width: 200px">
<Option value="OPEN">开启中</Option>
<Option value="CLOSED">已关闭</Option>
<Option value="APPLY">申请中</Option>
<!-- <Option value="APPLY">申请中</Option> -->
<Option value="APPLYING">审核中</Option>
<Option value="REFUSED">审核拒绝</Option>
</Select>
@ -329,6 +329,7 @@ export default {
},
//
getDataList() {
console.log(this.searchForm)
this.loading = true;
//
getShopListData(this.searchForm).then((res) => {