Compare commits

..

No commits in common. "8a94240c7b7f15d8cada1d3bb0742aa7af06e176" and "6d7acfeaf255c47b463500e94b31fa33b55ff3ab" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -55,7 +55,7 @@
</div>
<div class="good-price-num">
<div class="good-price-num-pos">
<div class="price" @click="toCheckGood(index, indexg)">{{ g.netWeightInfoVO.goodSpecs }}</div>
<div class="price" @click="toCheckGood(index, indexg)">{{ g.price }} / {{ g.unit }}</div>
<div class="total" @click="toCheckGood(index, indexg)">{{ (g.price * g.quantity).toFixed(2) }}</div>
<div class="num">
<div class="right-item">

View File

@ -56,7 +56,7 @@
</div>
<div class="good-price-num">
<div class="good-price-num-pos">
<div class="price">{{ g.netWeightInfoVO ? g.netWeightInfoVO.goodSpecs : '' }}</div>
<div class="price">{{ g.unitPrice }} / {{ g.unit }} * {{ g.quantity }}</div>
<div class="total">
<div class="amount">{{ (g.unitPrice * g.quantity).toFixed(2) }}</div>
<!-- <div class="amount">{{ (g.unitPrice * g.quantity + g.carriage).toFixed(2) }}</div> -->
@ -195,7 +195,6 @@ let bottomList = reactive([
onMounted(() => {
page.orderStatus = 'all';
store.getData(page).then((res) => {
console.log(typeof res.records[0].orderItemInfos[0].netWeightInfoVO.goodSpecs);
total.value = res.total;
if (res.records.length > 0) {
show.value = true;