This commit is contained in:
hanchaobo
2024-02-05 18:14:59 +08:00
parent b7cae96eb5
commit 77f89d9545
18 changed files with 3338 additions and 1510 deletions
+8
View File
@@ -77,4 +77,12 @@ export function updateBooking(data) {
method: 'post',
data: data
})
}
// 查询按钮列表
export function queryCaseFlowInfo(data) {
return request({
'url': `/case/flow/queryCaseFlowInfo`,
method: 'post',
data: data
})
}
+18
View File
@@ -0,0 +1,18 @@
import request from '@/utils/request'
/** 获取支付二维码 */
export function casePay(data) {
return request({
'url': '/pay/casePay',
method: 'post',
data: data
})
}
/**确认缴费*/
export function confirmPayment(data) {
return request({
'url': '/pay/confirmPayment',
method: 'post',
data: data
})
}