浏览代码

2024.05.27 补充提交

zweiqin 10 月之前
父节点
当前提交
69e4d225aa
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/views/commodity/commodityList/components/EditModal.vue

+ 5 - 0
src/views/commodity/commodityList/components/EditModal.vue

@@ -239,6 +239,11 @@ export default {
     },
     handleDelete(data, node) {
       if (data.shopGroupId) {
+        let isGroupIdEmpty = false
+        XeUtils.eachTree([ this.formData ], (item) => {
+          if (!item.shopGroupId) isGroupIdEmpty = true
+        }, { children: 'childs' })
+        if (isGroupIdEmpty) return this.$message({ message: '包含新建分组,请先保存', type: 'warning' })
         this.$confirm('选中数据将被永久删除, 是否继续?', '提示', {
           confirmButtonText: '确定',
           cancelButtonText: '取消',