Procházet zdrojové kódy

设备表格编辑置空修改为空字符串

zhangyu před 5 roky
rodič
revize
52a917846c
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/components/handsontables/device.vue

+ 2 - 1
src/components/handsontables/device.vue

@@ -935,7 +935,8 @@ export default {
       data.map((item, index) => {
         let arr = change[index][1].split(".");
         let info = {};
-        info[arr[1]] = [{ value: item[arr[0]][arr[1]] != "" ? item[arr[0]][arr[1]] : null }];
+        // info[arr[1]] = [{ value: item[arr[0]][arr[1]] != "" ? item[arr[0]][arr[1]] : null }];
+        info[arr[1]] = [{ value: item[arr[0]][arr[1]]}];
         param.data.criterias.push({
           id: item.id,
           infos: info