Browse Source

fix: 行业重复显示问题排查

Signed-off-by: tsz <2417024719@qq.com>
tsz 1 year ago
parent
commit
9e495ec500
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/web/staticres/dataExport/js/delbox.js

+ 3 - 1
src/web/staticres/dataExport/js/delbox.js

@@ -115,7 +115,9 @@ var DelBox = function () {
           return v !== _this3.arr[index];
         });
         var d = this.domArr.splice(index, 1)[0];
-        d.remove();
+        if(d) {
+          d.remove();
+        }
       }
     }
   }]);