|
@@ -27,7 +27,7 @@
|
|
|
<el-table-column label="商品图标" min-width="200">
|
|
|
<template v-slot="{ row, $index }">
|
|
|
<el-form-item :prop="`${$index}.goodsIcon`" :rules="formRules.goodsIcon" class="mb-0px!">
|
|
|
- <ImageUpload v-model="row.goodsIcon"/>
|
|
|
+ <ImageUpload v-model="row.goodsIcon" :limit = '1' />
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -68,8 +68,10 @@
|
|
|
},
|
|
|
watch:{/** 监听主表的关联字段的变化,加载对应的子表数据 */
|
|
|
goodsTypeId:{
|
|
|
+
|
|
|
handler(val) {
|
|
|
// 1. 重置表单
|
|
|
+ console.log('goodsTypeId', val)
|
|
|
this.formData = []
|
|
|
// 2. val 非空,则加载数据
|
|
|
if (!val) {
|
|
@@ -79,7 +81,7 @@
|
|
|
this.formLoading = true;
|
|
|
// 这里还是需要获取一下 this 的不然取不到 formData
|
|
|
const that = this;
|
|
|
- TypeApi.getListByGoodsTypeId(val).then(function (res){
|
|
|
+ TypeApi.getByGoodsTypeId(val).then(function (res){
|
|
|
that.formData = res.data;
|
|
|
})
|
|
|
} finally {
|