结算金额走起

This commit is contained in:
2024-01-24 22:34:53 +08:00
parent 22b3587e5d
commit 21de42a7b6
2 changed files with 7 additions and 3 deletions

View File

@@ -10,8 +10,8 @@ export function find(id) {
/** /**
* 结算订单 * 结算订单
*/ */
export function orderAccount(params) { export function orderAccount(enterId, payMoney) {
return http.post('/member/enter/veneu/account', params) return http.post('/member/enter/veneu/account', { 'EnterId': enterId, 'payMoney': payMoney })
} }
/** /**

View File

@@ -145,7 +145,9 @@ export default {
activeName: '1', activeName: '1',
dialogFormByDay: false, dialogFormByDay: false,
orderId: undefined, orderId: undefined,
// 订单金额
orderPrice: undefined, orderPrice: undefined,
// 订单已退款金额
orderPayMoney: undefined, orderPayMoney: undefined,
params: { params: {
search_eq_mobile: '', search_eq_mobile: '',
@@ -231,7 +233,9 @@ export default {
return return
} }
this.dialogFormByDay = false this.dialogFormByDay = false
orderAccount() orderAccount(this.orderId,this.form.miniMoney).then(result => {
this.$refs.pagination.handleSearch()
})
}, },
getType(type) { getType(type) {