去除 店铺 申请中状态
parent
acc9a0b88a
commit
984bc4b635
|
@ -871,7 +871,9 @@
|
|||
this.$set(this, "storeInfo", res.result);
|
||||
//因switch开关需要用到true或者false 所以进行一次格式化
|
||||
this.storeInfo.storeDisable = this.storeInfo.storeDisable === "OPEN" ? true : false
|
||||
if(this.storeInfo.goodsManagementCategory != null){
|
||||
this.checkAllGroup = this.storeInfo.goodsManagementCategory.split(",");
|
||||
}
|
||||
this.storeInfo.legalPhoto = this.storeInfo.legalPhoto.split(",");
|
||||
});
|
||||
},
|
||||
|
|
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue