46089e23 by fanguang

fix

1 parent 0ba6f947
......@@ -417,7 +417,9 @@ const importData = (info) => {
});
let sheetMaps = {}
uploadSetting.value.forEach(item => {
sheetMaps[item.value] = item.standardGuid
if (item.value) {
sheetMaps[item.value] = item.standardGuid
}
})
sheetMaps = JSON.stringify(sheetMaps)
// console.log('sheetMaps', sheetMaps)
......
......@@ -417,7 +417,9 @@ const importData = (info) => {
});
let sheetMaps = {}
uploadSetting.value.forEach(item => {
sheetMaps[item.value] = item.standardGuid
if (item.value) {
sheetMaps[item.value] = item.standardGuid
}
})
sheetMaps = JSON.stringify(sheetMaps)
// console.log('sheetMaps', sheetMaps)
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!