修改支付订单的api

This commit is contained in:
WindowBird 2025-09-18 15:10:33 +08:00
parent 3865ad1490
commit 25ddda955e

View File

@ -9,16 +9,20 @@ export function ordersPray(data = {}) {
channelId: 1,
templeId: 12,
...data,
}, // POST请求应该使用data而不是params
},
});
}
// 法会订单接口
// 建制订单接口
export function ordersFormed(data = {}) {
return request({
url: "/app/orders/formed",
method: "POST",
data,
data: {
channelId: 1,
templeId: 12,
...data,
},
});
}
@ -27,6 +31,10 @@ export function ordersEnshrined(data = {}) {
return request({
url: "/app/orders/enshrined",
method: "POST",
data,
data: {
channelId: 1,
templeId: 12,
...data,
},
});
}