Pārlūkot izejas kodu

fix:修改我的贸易-销售合同变更货物信息无法删除异常

lazy 5 mēneši atpakaļ
vecāks
revīzija
6ee7454fd2

+ 5 - 2
src/views/myTrade/salesContractManagement/components/ChangeSalesContractAddContent.vue

@@ -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)
             })
           }