diff --git a/pageQuota/quotation/index.vue b/pageQuota/quotation/index.vue index 5e91e66..d7a9ac5 100644 --- a/pageQuota/quotation/index.vue +++ b/pageQuota/quotation/index.vue @@ -20,111 +20,123 @@ - - - - - - - - - - - - {{tabIndex==1?"未报价":"已报价" }} - + + + + + + + - - - {{item.goods.name}} + + + + + {{tabIndex==1?"未报价":"已报价" }} + - - 需求量: {{item.need_num}}{{item.unit_name}} - - - - - - - - - - - - - - 共{{item.nums}}{{item.unit_name}}   合计:¥{{item.nums*item.price}} - - - - - - - - - - - - - - - - - - - - - - - - {{tabIndex==1?"未报价":"已报价" }} - - - - - {{item.goods.name}} - - - 需求量: {{item.need_num}}{{item.unit_name}} - - - - - + + + + + + + + + - - - + + 共{{item.nums}}{{item.unit_name}}   合计:¥{{item.nums*item.price}} + - - 共{{item.nums}}{{item.unit_name}}   合计:¥{{item.nums*item.price}} - - + + + + + + + + + + + + + + + + + + + + + {{tabIndex==1?"未报价":"已报价" }} + + + + + {{item.goods.name}} + + + 需求量: {{item.need_num}}{{item.unit_name}} + + + + + + + + + + + + + + 共{{item.nums}}{{item.unit_name}}   合计:¥{{item.nums*item.price}} + + + - - - - + + + + + + + + + + + @@ -160,8 +172,8 @@ const tabsRight = ref(tabsLeft.value + (windowWidth / 2)) // tabsindex结束 - const priceBlur = (index) => { - goodsList.value[index].price = Number(goodsList.value[index].price).toFixed(2) + const priceBlur = (index, goodsList) => { + goodsList[index].price = Number(goodsList[index].price).toFixed(2) } // 列表 @@ -208,7 +220,7 @@ getGoodsList(tabIndex.value) // 列表结束 const submit = async () => { - let datas = goodsList.value.map(item => ({ + let datas = goodsList1.value.map(item => ({ id: item.id, nums: item.nums, price: item.price @@ -219,8 +231,6 @@ newData.push(item) } }) - - let res = await OpurchaseGoodsOfferApi({ data: newData })