pull/781/head
zy 2025-05-10 18:27:44 +08:00
parent afd8ce0d4a
commit 7feeb519d8
1 changed files with 6 additions and 1 deletions

View File

@ -185,7 +185,12 @@ watch(
// formData.value = await QuotationApi.getQuotationProductListByQuotationId(val.quotationId)
// } else if(val.businessId) {
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)
// }
} finally {