结算金额走起

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) {
return http.post('/member/enter/veneu/account', params)
export function orderAccount(enterId, payMoney) {
return http.post('/member/enter/veneu/account', { 'EnterId': enterId, 'payMoney': payMoney })
}
/**

View File

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