feat: 修改用户充值控制器和用户签到逻辑,将采购包金额从0.01元修改为1000元。

This commit is contained in:
mkm 2024-07-11 15:23:07 +08:00
parent 981a9f89ae
commit 9ea0327998
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ use app\api\lists\user\UserRechargeLists;
$send_bar = "品牌礼品券";
$arr = [
[
'money'=>0.01,//采购包
'money'=>1000,//采购包
// 'money'=>1,//采购包
'send'=>249,//礼品券
'money_string'=>$buy_bar,

View File

@ -25,7 +25,7 @@ class UserSignLogic extends BaseLogic
{
$price=(int)$order['price'];
switch ($price) {
case 0.01:
case 1000:
$total_vip = 249;
break;
case 2000: