修复超粉提交微信提示余额不足的bug
This commit is contained in:
parent
650daaaa89
commit
0ee0b1baa0
|
@ -71,7 +71,11 @@ export default function AddWeChat({
|
|||
});
|
||||
return;
|
||||
}
|
||||
if (userResponse?.data.account?.gold_num >= price) {
|
||||
if (
|
||||
userResponse?.data.account?.gold_num >= price ||
|
||||
(streamerDetailData?.is_unlock_wechat === 1 &&
|
||||
streamerDetailData?.wechat_order_status === 2)
|
||||
) {
|
||||
// console.log("余额足够");
|
||||
if (type) {
|
||||
if (!userWechat) {
|
||||
|
|
Loading…
Reference in New Issue