Răsfoiți Sursa

Merge branch 'hezhihong_bug修复'

hezhihong 1 an în urmă
părinte
comite
0654e36664
1 a modificat fișierele cu 7 adăugiri și 1 ștergeri
  1. 7 1
      src/views/norm/dataSubmission.vue

+ 7 - 1
src/views/norm/dataSubmission.vue

@@ -147,6 +147,7 @@ export default {
       loading: true,
       // 选中数组
       ids: [],
+      fnames: [],
       // 非单个禁用
       single: true,
       // 非多个禁用
@@ -279,6 +280,8 @@ export default {
     // 多选框选中数据
     handleSelectionChange(selection) {
       this.ids = selection.map(item => item.id);
+      this.fnames = selection.map(item => item.fname);
+
       this.single = selection.length !== 1;
       this.multiple = !selection.length;
     },
@@ -292,6 +295,7 @@ export default {
     handleUpdate(row) {
       this.reset();
       const id = row.id || this.ids;
+
       getGIVE(id).then(response => {
         this.form = response.data;
         this.open = true;
@@ -351,9 +355,11 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
+      const fname = row.fname || this.fnames;
+      
       this.$modal
         // .confirm('是否确认删除报送数据项配置编号为"' + ids + '"的数据项?')
-        .confirm(`是否确认删除报送数据项配置编号为【${ids}】;报送参数名称为【${row.fname}】的数据项?`)
+        .confirm(`是否确认删除报送数据项配置编号为【${ids}】;报送参数名称为【${fname}】的数据项?`)
         .then(function () {
           return delGIVE(ids);
         })