Browse Source

2024.05.27 补充提交

zweiqin 10 months ago
parent
commit
69e4d225aa
1 changed files with 5 additions and 0 deletions
  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) {
     handleDelete(data, node) {
       if (data.shopGroupId) {
       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('选中数据将被永久删除, 是否继续?', '提示', {
         this.$confirm('选中数据将被永久删除, 是否继续?', '提示', {
           confirmButtonText: '确定',
           confirmButtonText: '确定',
           cancelButtonText: '取消',
           cancelButtonText: '取消',