|
@@ -39,10 +39,10 @@ class WithDrawInfoController
|
|
|
}else{
|
|
}else{
|
|
|
//第四种状态,VIP状态下,金额不足了,进度条颜色红色,按钮灰色(不可点击),次日整个消失
|
|
//第四种状态,VIP状态下,金额不足了,进度条颜色红色,按钮灰色(不可点击),次日整个消失
|
|
|
if($userScoreData['InsureScore']<10){
|
|
if($userScoreData['InsureScore']<10){
|
|
|
- return apiReturnSuc(['state' => 4, 'total' => $userScoreData['InsureScore'],'InsureScore' => $userScoreData['InsureScore']]);
|
|
|
|
|
|
|
+ return apiReturnSuc(['state' => 4, 'total' => max($userScoreData['InsureScore'],40),'InsureScore' => max($userScoreData['InsureScore'],40)]);
|
|
|
}else{
|
|
}else{
|
|
|
//第三种状态,进去完成了充值未提现,提现按钮会高光,引导用户完成提现
|
|
//第三种状态,进去完成了充值未提现,提现按钮会高光,引导用户完成提现
|
|
|
- return apiReturnSuc(['state' => 3, 'total' => $userScoreData['InsureScore'],'InsureScore' => $userScoreData['InsureScore']]);
|
|
|
|
|
|
|
+ return apiReturnSuc(['state' => 3, 'total' => max($userScoreData['InsureScore'],40),'InsureScore' => max($userScoreData['InsureScore'],40)]);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|