好评率展示问题,申请售后图片变形,清除足迹不刷新列表,结算单筛选条件展示错误,店铺审核按钮调整到详情

This commit is contained in:
mabo
2021-08-12 01:03:39 +08:00
parent 81ab58e009
commit 2e27a2fb85
7 changed files with 92 additions and 202 deletions

View File

@@ -59,7 +59,7 @@
<FormItem label="分类名称" prop="name">
<Input v-model="formAdd.name" clearable style="width: 100%" />
</FormItem>
<FormItem label="分类图标" prop="image">
<FormItem label="分类图标" prop="image" v-if="formAdd.level === 2">
<upload-pic-input v-model="formAdd.image" style="width: 100%"></upload-pic-input>
</FormItem>
<FormItem label="排序值" prop="sortOrder" style="width: 345px">
@@ -266,10 +266,12 @@ export default {
},
// 添加子分类
addChildren(v) {
console.log(v);
this.modalType = 0;
this.modalTitle = "添加子分类";
this.parentTitle = v.name;
this.formAdd.level = eval(v.level + "+1");
this.formAdd.commissionRate = v.commissionRate;
this.showParent = true;
delete this.formAdd.id;
this.formAdd.parentId = v.id;