@@ -447,7 +447,7 @@ INTERFACE_EXPORT = (() => {
}
return (node.data.name || '').replace(/[^0-9]/g, '')
- let curLB = 7;
+ let curLB = 8;
// 获取类别
const getLB = (node) => {
const flag = node.getFlag();
@@ -148,6 +148,10 @@ INTERFACE_IMPORT = (() => {
item.unit = getValue(src, ['_单位']);
item.quantity = getValue(src, ['_暂定数量']);
+ const remark = getValue(src, ['_备注']) || '';
+ if (remark !== '') {
+ item.remark = remark;
+ }
return item;
});