pull/781/head
parent
afd8ce0d4a
commit
7feeb519d8
|
|
@ -185,7 +185,12 @@ watch(
|
||||||
// formData.value = await QuotationApi.getQuotationProductListByQuotationId(val.quotationId)
|
// formData.value = await QuotationApi.getQuotationProductListByQuotationId(val.quotationId)
|
||||||
// } else if(val.businessId) {
|
// } else if(val.businessId) {
|
||||||
const business = await BusinessApi.getBusiness(val);
|
const business = await BusinessApi.getBusiness(val);
|
||||||
formData.value = business.products
|
let data = business.products
|
||||||
|
data.forEach(item => {
|
||||||
|
item.onlinePrice = ''
|
||||||
|
item.offlinePrice = ''
|
||||||
|
})
|
||||||
|
formData.value = data
|
||||||
emit('update:handleType', 0)
|
emit('update:handleType', 0)
|
||||||
// }
|
// }
|
||||||
} finally {
|
} finally {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue