aliyun0758874076 1 år sedan
förälder
incheckning
24944c1b77

+ 2 - 2
.env.development

@@ -4,8 +4,8 @@ ENV = 'development'
 # base api
 VUE_APP_BASE_API = '/dev-api'
 # 开发环境
-VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9104'
-# VUE_APP_DOMAIN_PREFIX = '/businessapi'
+# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9104'
+VUE_APP_DOMAIN_PREFIX = '/businessapi'
 
 # 演示环境
 # VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9104'

+ 7 - 0
src/views/commodity/commodityList/commodityGroup.vue

@@ -297,6 +297,11 @@ export default {
                 message: '删除成功!'
               })
               this.getAll(this.formInline)
+              // eslint-disable-next-line vue/require-explicit-emits, vue/custom-event-name-casing
+              this.$emit('getAllData')
+              // if (data.depth === 1) {
+
+              // }
             }
             const parent = node.parent
             const children = parent.data.childs || parent.data
@@ -414,6 +419,8 @@ export default {
               type: 'success'
             })
             self.$emit('reload')
+            // eslint-disable-next-line vue/custom-event-name-casing
+            self.$emit('getAllData')
           } else {
             self.$message({
               message: res.message,

+ 7 - 2
src/views/commodity/commodityList/index.vue

@@ -84,7 +84,7 @@
       top="10vh" class="group-dialog"
       > -->
     <el-dialog title="分组管理" :visible.sync="commidyVisible" width="900px" center top="10vh" :close-on-click-modal="false">
-      <CommGroup :type="type" :group-options="tableData" :group-id="shopGroupId" @cancel="commidyVisible = false" @reload="search" />
+      <CommGroup :type="type" :group-options="tableData" :group-id="shopGroupId" @getAllData="getAll" @cancel="commidyVisible = false" @reload="search" />
     </el-dialog>
   </div>
 </template>
@@ -245,7 +245,12 @@ export default {
     },
     // 初始化查询所有数据
     async getAll(formInline) {
-      const res = await commodityListGetAll(formInline)
+      let res
+      if (formInline) {
+        res = await commodityListGetAll(formInline)
+      } else {
+        res = await commodityListGetAll(this.formInline)
+      }
       this.total = res.data.total
       this.tableData = res.data.list
     },