소스 검색

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

zhangyu 5 년 전
부모
커밋
52a917846c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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