更新from值
This commit is contained in:
parent
4416addc31
commit
de8888895f
|
@ -110,7 +110,7 @@ export default function Pay() {
|
|||
custom_coins: customCoin.selected ? customCoin.num : 0,
|
||||
pay_type: type,
|
||||
redirect_url: type === "yeepay_wxpay_h5" ? window.location.href : "",
|
||||
from: "app",
|
||||
from: searchParams.get("base")?"web":"app",
|
||||
};
|
||||
|
||||
//如果是微信jsapi支付直接跳转到中间页
|
||||
|
|
|
@ -89,7 +89,7 @@ export default function Vip() {
|
|||
product_id: "membership",
|
||||
pay_type: type,
|
||||
redirect_url: type === "yeepay_wxpay_h5" ? window.location.href : "",
|
||||
from: "app",
|
||||
from: searchParams.get("base")?"web":"app",
|
||||
};
|
||||
|
||||
//如果是微信jsapi支付直接跳转到中间页
|
||||
|
|
|
@ -119,7 +119,7 @@ export default function Pay({ params }) {
|
|||
product_id: checked ? "h5_zone_superfanship" : params.product_id,
|
||||
pay_type: type,
|
||||
redirect_url: type === "yeepay_wxpay_h5" ? window.location.href : "",
|
||||
from: "app",
|
||||
from: searchParams.get("base")?"web":"app",
|
||||
};
|
||||
|
||||
setIsLoading(true);
|
||||
|
|
Loading…
Reference in New Issue