Browse Source

解决LuckyExecl转换后编辑态字符开头的'和null问题

master
flowerField 5 years ago
parent
commit
33f488de96
  1. 2
      src/controllers/updateCell.js

2
src/controllers/updateCell.js

@ -176,7 +176,7 @@ export function luckysheetupdateCell(row_index1, col_index1, d, cover, isnotfocu
else{
value = valueShowEs(row_index, col_index, d);
if(cell.qp=="1"){
value = "'" + value;
value = value ? ("" + value) : value;
}
}
}

Loading…
Cancel
Save