|
@@ -232,6 +232,9 @@ export default {
|
|
|
remark: ''
|
|
|
})
|
|
|
},
|
|
|
+ deleteInfo(index) {
|
|
|
+ this.goodsInfoList.splice(index, 1)
|
|
|
+ },
|
|
|
templateImport() {
|
|
|
this.$refs.fileButton.click()
|
|
|
},
|
|
@@ -244,8 +247,8 @@ export default {
|
|
|
if (res.data.length) {
|
|
|
this.goodsInfoList = []
|
|
|
res.data.map(item => {
|
|
|
- item.quantity = typeof(item.quantity) === 'number' ? fourMoney(item.quantity) : item.quantity
|
|
|
- item.salesPrice = typeof(item.salesPrice) === 'number' ? formatMoney(item.salesPrice) : item.salesPrice
|
|
|
+ item.quantity = typeof (item.quantity) === 'number' ? fourMoney(item.quantity) : item.quantity
|
|
|
+ item.salesPrice = typeof (item.salesPrice) === 'number' ? formatMoney(item.salesPrice) : item.salesPrice
|
|
|
this.goodsInfoList.push(item)
|
|
|
})
|
|
|
}
|