|
@@ -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: '取消',
|