下单退款相关更新

This commit is contained in:
GaoHao
2025-03-15 18:30:27 +08:00
parent c2135c6119
commit 994cf8bf2b
54 changed files with 682 additions and 2408 deletions

View File

@@ -12,8 +12,8 @@
<view class="constantboxitem" v-for="(item,index) in tableList" :key="index"
@click="toDetail(item)">
<view class="head">{{item.productName}}</view>
<view class="head">{{item.num}}</view>
<view class="head">{{item.salesAmount || '无'}}</view>
<view class="head">{{item.number}}</view>
<view class="head">{{item.amount || '无'}}</view>
</view>
</view>
</view>
@@ -43,10 +43,10 @@
function gettableData() {
productSaleDate({
day: props.day,
page: 0,
page: 1,
size: 50
}).then((res) => {
tableList.value = res.productList.records
tableList.value = res.records
})
}
</script>