提交 f5df3302 authored 作者: huaxinzhu's avatar huaxinzhu

批量发货导入表格数据,去除首尾空格

上级 5e63d5d3
......@@ -735,9 +735,9 @@
// this.excelList = item[0].sheet
item[0].sheet.map((item, index) => {
this.excelList.push({
goods_order_sn: item['商品订单号'],
express_name: item['快递公司'],
express_sn: item['快递单号']
goods_order_sn: item['商品订单号'].toString().trim(),
express_name: item['快递公司'].toString().trim(),
express_sn: Number(item['快递单号'].toString().trim())
})
})
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论