Browse Source

feat ui 修复了分类子表无法加载的问题

GaoRunQi 6 months ago
parent
commit
0b7c248abe

+ 1 - 1
yudao-ui-admin-vue2/src/api/restaurant/type/index.js

@@ -56,7 +56,7 @@ export function exportTypeExcel(params) {
       // 获得商品
     export function getByGoodsTypeId(goodsTypeId) {
       return request({
-        url: '/restaurant/type/get-by-restaurant-type-id?goodsTypeId=' + goodsTypeId,
+        url: '/restaurant/type/goods/list-by-goods-type-id?goodsTypeId=' + goodsTypeId,
         method: 'get'
       })
     }

+ 1 - 1
yudao-ui-admin-vue2/src/views/restaurant/type/TypeForm.vue

@@ -10,7 +10,7 @@
                   <!-- 子表的表单 -->
           <el-tabs v-model="subTabsName">
                 <el-tab-pane label="商品" name="">
-                  <Form ref="FormRef" :restaurant-type-id="formData.id" />
+                  <Form ref="FormRef" :goodsTypeId="formData.id" />
                 </el-tab-pane>
           </el-tabs>
       <div slot="footer" class="dialog-footer">

+ 4 - 2
yudao-ui-admin-vue2/src/views/restaurant/type/components/Form.vue

@@ -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 {