影藏订单信息中总金额那个接口和列表

This commit is contained in:
魏啾 2024-11-25 14:35:42 +08:00
parent d704253591
commit 4a62f56c96
1 changed files with 15 additions and 14 deletions

View File

@ -68,7 +68,7 @@
<div class="t">总金额</div> <div class="t">总金额</div>
</div> </div>
</div> --> </div> -->
<div class="item" v-for="item in payCountList" :key="item.payType"> <!-- <div class="item" v-for="item in payCountList" :key="item.payType">
<div class="icon_wrap" style="--bg-color:#fff"> <div class="icon_wrap" style="--bg-color:#fff">
<el-image class="img" :src="item.icon"></el-image> <el-image class="img" :src="item.icon"></el-image>
</div> </div>
@ -76,7 +76,7 @@
<div class="m">{{ item.payAmount || 0 }}</div> <div class="m">{{ item.payAmount || 0 }}</div>
<div class="t">{{ item.payType }}</div> <div class="t">{{ item.payType }}</div>
</div> </div>
</div> </div> -->
</div> </div>
</div> </div>
<div class="head-container"> <div class="head-container">
@ -150,7 +150,8 @@
<template v-slot="scope"> <template v-slot="scope">
<div class="u-flex gap-10"> <div class="u-flex gap-10">
<el-button type="text" @click="$refs.orderDetail.show(scope.row)">详情</el-button> <el-button type="text" @click="$refs.orderDetail.show(scope.row)">详情</el-button>
<el-button v-if="scope.row.status == 'unpaid'" type="primary" size="mini" @click="payOrder(scope.row)">结账</el-button> <el-button v-if="scope.row.status == 'unpaid'" type="primary" size="mini"
@click="payOrder(scope.row)">结账</el-button>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
@ -207,24 +208,24 @@ export default {
filters: { filters: {
orderTypeFilter(t) { orderTypeFilter(t) {
if (t) { if (t) {
const item= orderEnum.orderType.find(item => item.key == t); const item = orderEnum.orderType.find(item => item.key == t);
return t && item?item.label:''; return t && item ? item.label : '';
} else { } else {
return t; return t;
} }
}, },
sendTypeFilter(t) { sendTypeFilter(t) {
if (t) { if (t) {
const item= orderEnum.sendType.find(item => item.key == t); const item = orderEnum.sendType.find(item => item.key == t);
return item?item.label:''; return item ? item.label : '';
} else { } else {
return t; return t;
} }
}, },
statusFilter(t) { statusFilter(t) {
if (t) { if (t) {
const item= orderEnum.status.find(item => item.key == t); const item = orderEnum.status.find(item => item.key == t);
return t && item?item.label:''; return t && item ? item.label : '';
} else { } else {
return t; return t;
} }
@ -245,7 +246,7 @@ export default {
this.query.orderNo = this.$route.query.orderNo this.query.orderNo = this.$route.query.orderNo
} }
this.resetQuery = { ...this.query }; this.resetQuery = { ...this.query };
this.tbShopPayTypeGet(); // this.tbShopPayTypeGet();
this.getTableData(); this.getTableData();
// -- // --
if (this.$route.query.orderNo) { if (this.$route.query.orderNo) {
@ -254,11 +255,11 @@ export default {
this.getTableData(); this.getTableData();
}, 200); }, 200);
} }
}, },
methods: { methods: {
// //
payOrder(order){ payOrder(order) {
console.log(order); console.log(order);
this.$router.push({ this.$router.push({
path: "/tool/Instead/index", path: "/tool/Instead/index",
@ -268,7 +269,7 @@ export default {
useType: order.useType, useType: order.useType,
masterId: order.masterId, masterId: order.masterId,
orderId: order.id, orderId: order.id,
key:'isJieZhang' key: 'isJieZhang'
}, },
}); });
}, },
@ -324,7 +325,7 @@ export default {
async getTableData(switchs = false) { async getTableData(switchs = false) {
this.tableData.loading = true; this.tableData.loading = true;
try { try {
this.payCount(); // this.payCount();
const productName = this.query.productName.replace(/\s+/g, '') const productName = this.query.productName.replace(/\s+/g, '')
const res = await tbOrderInfoData({ const res = await tbOrderInfoData({
page: this.tableData.page, page: this.tableData.page,