wupengfei 3 năm trước cách đây
mục cha
commit
dfc1917a9d

+ 2 - 2
application/api/controller/Collect.php

@@ -228,7 +228,7 @@ class Collect extends Base
         try {
             $user_info = Db::name('store_member')->where('id',$this->uid)->find();
             $user_name = $user_info['name'];
-            if(!$user_info['is_auth'])  throw new Exception('请实名认证后兑换作品!');
+           // if(!$user_info['is_auth'])  throw new Exception('请实名认证后兑换作品!');
             $code_info  = Db::table('goods_code')->where(['code'=>$code,'status'=>1])->find();
             if(empty($code_info)) throw new Exception('兑换码有误!');
             $goods_id  = $code_info['goods_id'];
@@ -302,7 +302,7 @@ class Collect extends Base
                 ->where('phone',$to_user)->where('is_deleted',0)->find();
             if($send_user['id'] ==  $this->uid) throw new Exception('无法转赠给自己!');
             if(empty($send_user)) throw new Exception('赠送会员不存在!');
-            if(!$send_user['is_auth'])  throw new Exception('赠送会员未实名认证!');
+           // if(!$send_user['is_auth'])  throw new Exception('赠送会员未实名认证!');
             if($collect_info['crystal'] > $user_crystal) throw new Exception('元石不足,无法转赠!');
             $get_hash = get_goods_hash($send_user['id'],$collect_info['goods_id'],$collect_info['serial']);
             $send_info = [

+ 1 - 1
application/api/controller/GoodsOrder.php

@@ -38,7 +38,7 @@ class GoodsOrder extends Base
         Db::startTrans();
         try {
             $user_info = Db::name('store_member')->where('id',$this->uid)->find();
-            if(!$user_info['is_auth'])  throw new Exception('请实名认证后购买!');
+            //if(!$user_info['is_auth'])  throw new Exception('请实名认证后购买!');
             $goods_info = Db::table('store_goods')->where(['id'=>$goods_id,'type'=>1,'status'=>1,'is_deleted'=>0])->find();
             if(empty($goods_info)) throw new Exception('商品已下架,嘤嘤嘤~~~');
             if(strtotime($goods_info['sell_time']) > time()) throw new Exception('商品还未开始售卖!请耐心等待');

+ 2 - 0
application/api/controller/UserCenter.php

@@ -40,6 +40,8 @@ class UserCenter extends Base
         $user_info = Db::name('store_member')->field($field)->where('id',$uid)->find();
         if(empty($user_info)) $this->error('用户信息不正确');
         if($user_info['status'] == 0) $this->error('该用户已被禁用');
+        $crystal_switch = intval(sysconf('crystal_switch'));
+        $user_info['crystal_switch'] = $crystal_switch;
         $this->success('获取成功',$user_info);
     }
 

+ 1 - 0
application/store/controller/Config.php

@@ -40,6 +40,7 @@ class Config extends Controller
         $this->query = ExtendService::queryChinaSmsBalance();
         $this->query2 = ExtendService::queryGlobeSmsBalance();
         $this->sell_switch = sysconf('sell_switch');
+        $this->crystal_switch = sysconf('crystal_switch');
         $this->goods_detail_switch = sysconf('goods_detail_switch');
         $this->fetch();
     }

+ 20 - 0
application/store/view/config/platform-set.html

@@ -59,6 +59,26 @@
             <p class="help-block"></p>
         </label>
 
+
+        <label class="layui-form-item block relative">
+            <span class="color-green margin-right-10">元石开关</span><span class="nowrap color-desc">CrystalSwitch</span>
+            <div>
+                {foreach [1=>'开启',0=>'关闭'] as $sk=>$sv}
+                <!--{if $crystal_switch eq $sk}-->
+                <label >
+                    <input checked type="radio" name="crystal_switch" value="{$sk}"  lay-filter="crystal_switch">
+                </label>
+                <!--{else}-->
+                <label>
+                    <input type="radio" name="crystal_switch" value="{$sk}"  lay-filter="crystal_switch" >
+                </label>
+                <!--{/if}-->
+                <span class="margin-right-5">{$sv}</span>
+                {/foreach}
+            </div>
+            <p class="help-block"></p>
+        </label>
+
         <div class="layui-form-item text-center margin-top-20">
             <button class="layui-btn" type="submit">保存配置</button>
         </div>