Commit 42ebe5ee by 姜雷

支付接口添加appid参数

parent 26073e49
......@@ -55,7 +55,7 @@ export const rechargeOrder = (
customerFetch({
url: '/dcxy/app/rechargeOrder/rechargeOrder/smallProPay',
method: 'POST',
data: params,
data: { ...params, appId: 'wxf2cac8f84183c8fc' },
});
type CreditInfo = {
......
......@@ -65,7 +65,7 @@ type ConfirmpayParams = {
export const confirmPay = (data: ConfirmpayParams) =>
customerFetch({
url: '/consumeOrder/confirmPay',
data: data,
data: { ...data, appId: 'wxf2cac8f84183c8fc' },
});
type RechargeParams = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment