Commit 42ebe5ee by 姜雷

支付接口添加appid参数

parent 26073e49
...@@ -55,7 +55,7 @@ export const rechargeOrder = ( ...@@ -55,7 +55,7 @@ export const rechargeOrder = (
customerFetch({ customerFetch({
url: '/dcxy/app/rechargeOrder/rechargeOrder/smallProPay', url: '/dcxy/app/rechargeOrder/rechargeOrder/smallProPay',
method: 'POST', method: 'POST',
data: params, data: { ...params, appId: 'wxf2cac8f84183c8fc' },
}); });
type CreditInfo = { type CreditInfo = {
......
...@@ -65,7 +65,7 @@ type ConfirmpayParams = { ...@@ -65,7 +65,7 @@ type ConfirmpayParams = {
export const confirmPay = (data: ConfirmpayParams) => export const confirmPay = (data: ConfirmpayParams) =>
customerFetch({ customerFetch({
url: '/consumeOrder/confirmPay', url: '/consumeOrder/confirmPay',
data: data, data: { ...data, appId: 'wxf2cac8f84183c8fc' },
}); });
type RechargeParams = { 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