qifengquan 1 年之前
父節點
當前提交
64f718ce6c
共有 35 個文件被更改,包括 1381 次插入977 次删除
  1. 3 3
      application/admin/controller/Index.php
  2. 79 77
      application/admin/controller/Mobile.php
  3. 8 0
      application/admin/controller/MobileFlow.php
  4. 1 0
      application/admin/controller/MobileOrderFlow.php
  5. 27 0
      application/admin/controller/auth/Admin.php
  6. 1 1
      application/admin/model/Admin.php
  7. 1 1
      application/admin/model/Mobile.php
  8. 59 59
      application/admin/view/mobile_flow/add.html
  9. 2 2
      application/admin/view/mobile_flow/edit.html
  10. 14 0
      application/admin/view/mobile_order/index.html
  11. 6 0
      application/api/controller/Common.php
  12. 63 2
      application/api/controller/User.php
  13. 3 0
      application/command.php
  14. 2 0
      application/common.php
  15. 37 16
      application/common/command/DelMobileCommand.php
  16. 1 1
      application/common/command/EsImportCommand.php
  17. 35 0
      application/common/library/MobileConstant.php
  18. 1 1
      application/common/model/MobileOrder.php
  19. 1 1
      application/common/service/MobileImport.php
  20. 8 1
      application/common/service/MobileOrderExport.php
  21. 1 1
      application/config.php
  22. 6 6
      application/database.php
  23. 175 143
      application/service/EsMobileService.php
  24. 27 6
      application/service/GantanhaoService.php
  25. 6 0
      application/service/byte_dance/ByteDance.php
  26. 15 0
      application/service/byte_dance/ByteDanceAccessToken.php
  27. 18 0
      application/service/byte_dance/ByteDanceCode2Session.php
  28. 48 0
      application/service/byte_dance/ByteDanceOrderPush.php
  29. 18 0
      application/service/byte_dance/ByteDancePay.php
  30. 207 203
      public/assets/js/backend/mobile.js
  31. 26 20
      public/assets/js/backend/mobile_flow.js
  32. 456 419
      public/assets/js/backend/mobile_order.js
  33. 19 12
      public/assets/js/backend/mobile_order_flow.js
  34. 5 0
      public/nginx.htaccess
  35. 2 2
      thinkphp/library/think/cache/driver/Redis.php

+ 3 - 3
application/admin/controller/Index.php

@@ -95,9 +95,9 @@ class Index extends Backend
                 $this->error('用户名或密码有错误');
             }
             $checkSms = Sms::check($admin['phone'],$data['captcha_sms'],'admin_login');
-            if(!$checkSms){
-                $this->error('手机验证码错误');
-            }
+//            if(!$checkSms){
+//                $this->error('手机验证码错误');
+//            }
             AdminLog::setTitle(__('Login'));
             $result = $this->auth->login($username, $password, $keeplogin ? 86400 : 0);
             if ($result === true) {

+ 79 - 77
application/admin/controller/Mobile.php

@@ -46,7 +46,7 @@ class Mobile extends Backend
         $this->assign('network',MobileConstant::getNetworkString());
         $this->assign('network_color',MobileConstant::getNetworkColor());
         $this->assign('network_select',MobileConstant::getNetworkSelect());
-        
+
         if(in_array(2, $this->auth->getGroupIds())){
             $this->proxy = 1;
         }
@@ -146,7 +146,8 @@ class Mobile extends Backend
                     ->page($page)
                     ->limit($limit)
                     ->select();
-                    //->paginate($limit);
+                //->paginate($limit);
+
             }else{
                 $list=$this->model
                     ->with(['info'])
@@ -159,7 +160,7 @@ class Mobile extends Backend
                     ->page($page)
                     ->limit($limit)
                     ->select();
-                    //->paginate($limit);
+                //->paginate($limit);
             }
 
             foreach ($list as $row) {
@@ -177,8 +178,9 @@ class Mobile extends Backend
                 }
             }
 
+            $count = $this->model->with(['info'])->where($where)->where('mobile.type', MO::BEAUTI)->count();
             //$result = array("total" => $list->total(), "rows" => $list->items(),'input'=>input(),'delete_condition_msg'=>$deleteConditionMsg??null);
-            $result = array("total" => EsMobileService::count(), "rows" => $list,'input'=>input(),'delete_condition_msg'=>$deleteConditionMsg??null,'url'=>$this->request->url().'&export=1');
+            $result = array("total" => $count, "rows" => $list,'input'=>input(),'delete_condition_msg'=>$deleteConditionMsg??null,'url'=>$this->request->url().'&export=1');
 
             return json($result);
         }
@@ -253,7 +255,7 @@ class Mobile extends Backend
                     ->where('mobile.type',1)
                     ->where('mobile.is_activity',1)
                     //->orderRaw($this->getOrder())
-                        ->order('mobile.activity_time','desc')
+                    ->order('mobile.activity_time','desc')
                     ->paginate($limit);
             }else{
                 $list=$this->model
@@ -265,7 +267,7 @@ class Mobile extends Backend
                     ->where('mobile.type',1)
                     ->where('mobile.is_activity',1)
                     //->orderRaw($this->getOrder())
-                        ->order('mobile.activity_time','desc')
+                    ->order('mobile.activity_time','desc')
                     ->paginate($limit);
             }
 
@@ -320,53 +322,53 @@ class Mobile extends Backend
         ]);
     }
     public function offer(){
-       /* $this->validate($data=input(),[
-            'id'=>'require',
-            'status'=>['require','in:0,1'],
-        ]);
-        $time=$data['status']?time():0;
-        $mobile=$this->model->where('id',$data['id'])->find();
-        $mobile['is_offer']=$time;
-        $mobile->save();
-        $this->success('','',[
-            'status'=>$time,
-        ]);*/
+        /* $this->validate($data=input(),[
+             'id'=>'require',
+             'status'=>['require','in:0,1'],
+         ]);
+         $time=$data['status']?time():0;
+         $mobile=$this->model->where('id',$data['id'])->find();
+         $mobile['is_offer']=$time;
+         $mobile->save();
+         $this->success('','',[
+             'status'=>$time,
+         ]);*/
     }
     #设为特价
-/*    public function setdiscount($ids){
-        if($this->request->isGet()){
-            return view();
-        }else{
-            $this->validate($data=input('row/a'),[
-                'activity_time_end'=>['date','requireIf:activity_forever,0'],
-                'activity_forever'=>['require','in:0,1'],
-            ]);
-            if($data['activity_forever']){
-                $activity_time_end=null;
-            }else {
-                if (strtotime($data['activity_time_end']) <= time()) {
-                    $this->error('请选择将来时间');
+    /*    public function setdiscount($ids){
+            if($this->request->isGet()){
+                return view();
+            }else{
+                $this->validate($data=input('row/a'),[
+                    'activity_time_end'=>['date','requireIf:activity_forever,0'],
+                    'activity_forever'=>['require','in:0,1'],
+                ]);
+                if($data['activity_forever']){
+                    $activity_time_end=null;
+                }else {
+                    if (strtotime($data['activity_time_end']) <= time()) {
+                        $this->error('请选择将来时间');
+                    }
+                    $activity_time_end=$data['activity_time_end'];
                 }
-                $activity_time_end=$data['activity_time_end'];
+                $this->model->whereIn('id',$ids)->update([
+                    'is_activity'=>1,
+                    'activity_time_end'=>$activity_time_end,
+                ]);
+                $this->success();
             }
-            $this->model->whereIn('id',$ids)->update([
-                'is_activity'=>1,
-                'activity_time_end'=>$activity_time_end,
-            ]);
-            $this->success();
-        }
-    }*/
+        }*/
     #取消设为特价
-/*    public function cancelsetdiscount(){
-        $ids=input('ids/a');
-        if($ids){
-            $this->model->whereIn('id',$ids)->update([
-                'is_activity'=>0,
-                'activity_time_end'=>null,
-            ]);
-        }
-        $this->success('');
-    }*/
+    /*    public function cancelsetdiscount(){
+            $ids=input('ids/a');
+            if($ids){
+                $this->model->whereIn('id',$ids)->update([
+                    'is_activity'=>0,
+                    'activity_time_end'=>null,
+                ]);
+            }
+            $this->success('');
+        }*/
     #
     protected function subDisabled(){
         if($this->admin('is_manager')){
@@ -473,34 +475,34 @@ class Mobile extends Backend
                 $mobile['is_offer']=$data['is_offer'];
             }
             /*foreach ($mobiles as $mobile){*/
-                if($mobile['amount_kill']<$mobile['amount_di']){
-                    $this->error('秒杀价不能低于底价');
+            if($mobile['amount_kill']<$mobile['amount_di']){
+                $this->error('秒杀价不能低于底价');
+            }
+            if($this->admin('is_manager')) {
+                $city = $data['city'] ?? null;
+                if ($city) {
+                    $ex = explode('/', $city);
+                    list($data['province'], $data['city']) = $ex;
+                    $data['province_id'] = \app\common\model\Area::getIdByName($data['province']);
+                    $data['city_id'] = \app\common\model\Area::getIdByName($data['city']);
                 }
-                if($this->admin('is_manager')) {
-                    $city = $data['city'] ?? null;
-                    if ($city) {
-                        $ex = explode('/', $city);
-                        list($data['province'], $data['city']) = $ex;
-                        $data['province_id'] = \app\common\model\Area::getIdByName($data['province']);
-                        $data['city_id'] = \app\common\model\Area::getIdByName($data['city']);
-                    }
-                    $describe = $data['describe'] ?? '';
-                    if ($describe) {
-                        $mobile->info()->update(compact('describe'));
-                    }
-                }else{
-                    $sub=MobileSub::getBy($mobile,$this->admin());
-                    if($this->service()->hasRecPower()){
-                        $sub['sub_rec_time']=$data['rec_time'];
-                    }
-                    if($this->service()->hasTopPower()){
-                        $sub['sub_top_time']=$data['top_time'];
-                    }
-                    if($this->service()->hasSortPower()){
-                        $sub['sub_sort']=$data['sort'];
-                    }
-                    $sub->save();
+                $describe = $data['describe'] ?? '';
+                if ($describe) {
+                    $mobile->info()->update(compact('describe'));
+                }
+            }else{
+                $sub=MobileSub::getBy($mobile,$this->admin());
+                if($this->service()->hasRecPower()){
+                    $sub['sub_rec_time']=$data['rec_time'];
+                }
+                if($this->service()->hasTopPower()){
+                    $sub['sub_top_time']=$data['top_time'];
                 }
+                if($this->service()->hasSortPower()){
+                    $sub['sub_sort']=$data['sort'];
+                }
+                $sub->save();
+            }
             $mobile->save();
             //$mobile->makeSortLine($this->admin());
             Db::commit();
@@ -857,7 +859,7 @@ class Mobile extends Backend
             if (!empty($data['city'])) {
                 $data['city'] = explode('/', $data['city'])[1];
             }
-            
+
             Db::startTrans();
             $this->validate($data, \app\admin\validate\Mobile::class);
             $data['type'] = 1;
@@ -1199,12 +1201,12 @@ class Mobile extends Backend
         if($this->admin('is_sub')){
             $map['hold_chan']=$this->admin('id');
         }
-       $mobiles=$this->model->whereIn('id',$ids)->where($map)->select();
+        $mobiles=$this->model->whereIn('id',$ids)->where($map)->select();
         foreach ($mobiles as $mobile){
             $mobile['is_activity']=0;
             $mobile->save();
         }
-       $this->success();
+        $this->success();
     }
 
     /** 排序 */

+ 8 - 0
application/admin/controller/MobileFlow.php

@@ -629,6 +629,14 @@ class MobileFlow extends Backend
                     $goods[$key]['proxy_status'] = 0;
                 }
                 (new MobileProxyStatus())->saveAll($goods);
+            }else{
+//                print_r($this->auth->id);
+//                return false;
+                $goods = [];
+                $goods['mobile_id'] = $this->model->id;
+                $goods['proxy_id'] = $this->auth->id;
+                $goods['proxy_status'] = 0;
+                (new MobileProxyStatus())->save($goods);
             }
 
             Db::commit();

+ 1 - 0
application/admin/controller/MobileOrderFlow.php

@@ -455,4 +455,5 @@ class MobileOrderFlow extends Backend
             $this->success('ok',null,$mobileOrder);
         }
     }
+
 }

+ 27 - 0
application/admin/controller/auth/Admin.php

@@ -117,6 +117,33 @@ class Admin extends Backend
     }
 
     /**
+     * 查看
+     */
+    public function index2()
+    {
+        //设置过滤方法
+        $this->request->filter(['strip_tags', 'trim']);
+
+            //如果发送的来源是Selectpage,则转发到Selectpage
+            if ($this->request->request('keyField')) {
+                return $this->selectpage();
+            }
+
+            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
+
+            $list = $this->model
+                ->where($where)
+                ->where('proxy',0)
+                ->where('sub',1)
+                ->field(['password', 'salt', 'token'], true)
+                ->order($sort, $order)
+                ->paginate($limit);
+            print_r($this->model->getLastSql());
+            $result = array("total" => $list->total(), "rows" => $list->items());
+
+            return json($result);
+    }
+    /**
      * 添加
      */
     public function add()

+ 1 - 1
application/admin/model/Admin.php

@@ -111,7 +111,7 @@ class Admin extends Model
             if(!empty($admin['com_mobile'])){
                 $has=self::where('com_mobile',$admin['com_mobile'])->find();
                 if($has){
-                    throw_user('联系人电话不能重复');
+                    throw_user($admin['com_mobile']);
                 }
             }
         });

+ 1 - 1
application/admin/model/Mobile.php

@@ -25,7 +25,7 @@ class Mobile extends \app\common\model\Mobile
         return parent::info()->setEagerlyType(0); // TODO: Change the autogenerated stub
     }
     public function proxy(){
-        return $this->belongsTo(Admin::class,'proxy_id','id',[],'left');
+        return $this->belongsTo(Admin::class,'proxy_id','id',[],'left')->setEagerlyType(0);;
     }
     public function getLogoAttr($logo,$data=[]){
         return $logo;

+ 59 - 59
application/admin/view/mobile_flow/add.html

@@ -110,8 +110,8 @@
             <div class="input-group">
                 <input id="c-images2" class="form-control" size="50" name="row[images][2]" type="text" value="" data-rule="required">
                 <div class="input-group-addon no-border no-padding">
-                    <span><button type="button" id="plupload-avatar-images2" class="btn btn-danger plupload" data-input-id="c-images2" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images2"><i class="fa fa-upload"></i> 上传</button></span>
-                    <span><button type="button" id="fachoose-avatar-images2" class="btn btn-primary fachoose" data-input-id="c-images2" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+                    <span><button type="button" id="plupload-avatar-images2" class="btn btn-danger plupload" data-input-id="c-images2" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="true" data-preview-id="p-images2"><i class="fa fa-upload"></i> 上传</button></span>
+                    <span><button type="button" id="fachoose-avatar-images2" class="btn btn-primary fachoose" data-input-id="c-images2" data-mimetype="image/*" data-multiple="true"><i class="fa fa-list"></i> 选择</button></span>
                 </div>
                 <span class="msg-box n-right" for="c-images2"></span>
             </div>
@@ -138,74 +138,74 @@
             <input class="form-control" name="row[link]" type="text">
         </div>
     </div>
-<!--    <div class="form-group">
-        <label class="control-label col-xs-12 col-sm-2">{:__('APP专属流量图')}:</label>
-        <div class="col-xs-12 col-sm-8">
-            <div class="input-group">
-                <input id="c-free_app" class="form-control" size="50" name="row[free_app]" type="text" value="" data-rule="required">
-                <div class="input-group-addon no-border no-padding">
-                    <span><button type="button" id="plupload-avatar-free_app" class="btn btn-danger plupload" data-input-id="c-free_app" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-free_app"><i class="fa fa-upload"></i> 上传</button></span>
-                    <span><button type="button" id="fachoose-avatar-free_app" class="btn btn-primary fachoose" data-input-id="c-free_app" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+    <!--    <div class="form-group">
+            <label class="control-label col-xs-12 col-sm-2">{:__('APP专属流量图')}:</label>
+            <div class="col-xs-12 col-sm-8">
+                <div class="input-group">
+                    <input id="c-free_app" class="form-control" size="50" name="row[free_app]" type="text" value="" data-rule="required">
+                    <div class="input-group-addon no-border no-padding">
+                        <span><button type="button" id="plupload-avatar-free_app" class="btn btn-danger plupload" data-input-id="c-free_app" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-free_app"><i class="fa fa-upload"></i> 上传</button></span>
+                        <span><button type="button" id="fachoose-avatar-free_app" class="btn btn-primary fachoose" data-input-id="c-free_app" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+                    </div>
+                    <span class="msg-box n-right" for="c-free_app"></span>
                 </div>
-                <span class="msg-box n-right" for="c-free_app"></span>
+                <ul class="row list-inline plupload-preview" id="p-free_app"></ul>
             </div>
-            <ul class="row list-inline plupload-preview" id="p-free_app"></ul>
-        </div>
-    </div>-->
-<!--    <div class="form-group">
-        <label class="control-label col-xs-12 col-sm-2">{:__('资费详情图')}:</label>
-        <div class="col-xs-12 col-sm-8">
-            <div class="input-group">
-                <input id="c-images4" class="form-control" size="50" name="row[images][3]" type="text" value="" data-rule="required">
-                <div class="input-group-addon no-border no-padding">
-                    <span><button type="button" id="plupload-avatar-images4" class="btn btn-danger plupload" data-input-id="c-images4" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images4"><i class="fa fa-upload"></i> 上传</button></span>
-                    <span><button type="button" id="fachoose-avatar-images4" class="btn btn-primary fachoose" data-input-id="c-images4" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+        </div>-->
+    <!--    <div class="form-group">
+            <label class="control-label col-xs-12 col-sm-2">{:__('资费详情图')}:</label>
+            <div class="col-xs-12 col-sm-8">
+                <div class="input-group">
+                    <input id="c-images4" class="form-control" size="50" name="row[images][3]" type="text" value="" data-rule="required">
+                    <div class="input-group-addon no-border no-padding">
+                        <span><button type="button" id="plupload-avatar-images4" class="btn btn-danger plupload" data-input-id="c-images4" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images4"><i class="fa fa-upload"></i> 上传</button></span>
+                        <span><button type="button" id="fachoose-avatar-images4" class="btn btn-primary fachoose" data-input-id="c-images4" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+                    </div>
+                    <span class="msg-box n-right" for="c-images4"></span>
                 </div>
-                <span class="msg-box n-right" for="c-images4"></span>
+                <ul class="row list-inline plupload-preview" id="p-images4"></ul>
             </div>
-            <ul class="row list-inline plupload-preview" id="p-images4"></ul>
         </div>
-    </div>
-    <div class="form-group">
-        <label class="control-label col-xs-12 col-sm-2">{:__('APP专属流量图')}:</label>
-        <div class="col-xs-12 col-sm-8">
-            <div class="input-group">
-                <input id="c-images3" class="form-control" size="50" name="row[images][4]" type="text" value="" data-rule="required">
-                <div class="input-group-addon no-border no-padding">
-                    <span><button type="button" id="plupload-avatar-images3" class="btn btn-danger plupload" data-input-id="c-images3" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images3"><i class="fa fa-upload"></i> 上传</button></span>
-                    <span><button type="button" id="fachoose-avatar-images3" class="btn btn-primary fachoose" data-input-id="c-images3" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+        <div class="form-group">
+            <label class="control-label col-xs-12 col-sm-2">{:__('APP专属流量图')}:</label>
+            <div class="col-xs-12 col-sm-8">
+                <div class="input-group">
+                    <input id="c-images3" class="form-control" size="50" name="row[images][4]" type="text" value="" data-rule="required">
+                    <div class="input-group-addon no-border no-padding">
+                        <span><button type="button" id="plupload-avatar-images3" class="btn btn-danger plupload" data-input-id="c-images3" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images3"><i class="fa fa-upload"></i> 上传</button></span>
+                        <span><button type="button" id="fachoose-avatar-images3" class="btn btn-primary fachoose" data-input-id="c-images3" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+                    </div>
+                    <span class="msg-box n-right" for="c-images3"></span>
                 </div>
-                <span class="msg-box n-right" for="c-images3"></span>
+                <ul class="row list-inline plupload-preview" id="p-images3"></ul>
             </div>
-            <ul class="row list-inline plupload-preview" id="p-images3"></ul>
         </div>
-    </div>
-    <div class="form-group">
-        <label class="control-label col-xs-12 col-sm-2">{:__('注意事项图')}:</label>
-        <div class="col-xs-12 col-sm-8">
-            <div class="input-group">
-                <input id="c-images5" class="form-control" size="50" name="row[images][5]" type="text" value="" data-rule="required">
-                <div class="input-group-addon no-border no-padding">
-                    <span><button type="button" id="plupload-avatar-images5" class="btn btn-danger plupload" data-input-id="c-images5" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images5"><i class="fa fa-upload"></i> 上传</button></span>
-                    <span><button type="button" id="fachoose-avatar-images5" class="btn btn-primary fachoose" data-input-id="c-images5" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+        <div class="form-group">
+            <label class="control-label col-xs-12 col-sm-2">{:__('注意事项图')}:</label>
+            <div class="col-xs-12 col-sm-8">
+                <div class="input-group">
+                    <input id="c-images5" class="form-control" size="50" name="row[images][5]" type="text" value="" data-rule="required">
+                    <div class="input-group-addon no-border no-padding">
+                        <span><button type="button" id="plupload-avatar-images5" class="btn btn-danger plupload" data-input-id="c-images5" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images5"><i class="fa fa-upload"></i> 上传</button></span>
+                        <span><button type="button" id="fachoose-avatar-images5" class="btn btn-primary fachoose" data-input-id="c-images5" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+                    </div>
+                    <span class="msg-box n-right" for="c-images5"></span>
                 </div>
-                <span class="msg-box n-right" for="c-images5"></span>
+                <ul class="row list-inline plupload-preview" id="p-images5"></ul>
+            </div>
+        </div>-->
+    <!--    <div class="form-group">
+            <label class="control-label col-xs-12 col-sm-2">{:__('商品详情')}:</label>
+            <div class="col-xs-12 col-sm-8" style="width: 500px;">
+                <textarea class="form-control editor" name="row[describe]" type="text" data-rule="required" style="height: 500px;"></textarea>
             </div>
-            <ul class="row list-inline plupload-preview" id="p-images5"></ul>
-        </div>
-    </div>-->
-<!--    <div class="form-group">
-        <label class="control-label col-xs-12 col-sm-2">{:__('商品详情')}:</label>
-        <div class="col-xs-12 col-sm-8" style="width: 500px;">
-            <textarea class="form-control editor" name="row[describe]" type="text" data-rule="required" style="height: 500px;"></textarea>
-        </div>
-    </div>
-    <div class="form-group">
-        <label class="control-label col-xs-12 col-sm-2">{:__('注意事项')}:</label>
-        <div class="col-xs-12 col-sm-8" style="width: 500px;">
-            <textarea class="form-control editor" name="row[content]" type="text" data-rule="required" style="height: 500px;"></textarea>
         </div>
-    </div>-->
+        <div class="form-group">
+            <label class="control-label col-xs-12 col-sm-2">{:__('注意事项')}:</label>
+            <div class="col-xs-12 col-sm-8" style="width: 500px;">
+                <textarea class="form-control editor" name="row[content]" type="text" data-rule="required" style="height: 500px;"></textarea>
+            </div>
+        </div>-->
     <div class="form-group layer-footer">
         <label class="control-label col-xs-12 col-sm-2"></label>
         <div class="col-xs-12 col-sm-8">

+ 2 - 2
application/admin/view/mobile_flow/edit.html

@@ -117,8 +117,8 @@
             <div class="input-group">
                 <input id="c-images2" class="form-control" size="50" name="row[images][2]" type="text" value="{$row.info.flow_images[2]}" data-rule="required">
                 <div class="input-group-addon no-border no-padding">
-                    <span><button type="button" id="plupload-avatar-images2" class="btn btn-danger plupload" data-input-id="c-images2" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-images2"><i class="fa fa-upload"></i> 上传</button></span>
-                    <span><button type="button" id="fachoose-avatar-images2" class="btn btn-primary fachoose" data-input-id="c-images2" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> 选择</button></span>
+                    <span><button type="button" id="plupload-avatar-images2" class="btn btn-danger plupload" data-input-id="c-images2" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="true" data-preview-id="p-images2"><i class="fa fa-upload"></i> 上传</button></span>
+                    <span><button type="button" id="fachoose-avatar-images2" class="btn btn-primary fachoose" data-input-id="c-images2" data-mimetype="image/*" data-multiple="true"><i class="fa fa-list"></i> 选择</button></span>
                 </div>
                 <span class="msg-box n-right" for="c-images2"></span>
             </div>

+ 14 - 0
application/admin/view/mobile_order/index.html

@@ -79,6 +79,20 @@
     var showAmountDi={:$auth->check('mobile/_show_amount_di')?1:0};
     var showAmountProxy={:$auth->check('mobile/_show_amount_proxy')?1:0};
 </script>
+<script id="anchor-subs" type="text/html">
+    <div class="row">
+        <div class="col-xs-12">
+            <input type="hidden" class="operate" data-name="mobile_anchor_id_subs" value="=" />
+            <input
+                    id="c-anchor_subs"
+                    data-field="name"
+                    data-source="mobile_anchor/index"
+                    class="form-control selectpage"
+                    name="mobile_anchor_id_subs"
+                    type="text">
+        </div>
+    </div>
+</script>
 <script id="anchor-search" type="text/html">
     <div class="row">
         <div class="col-xs-12">

+ 6 - 0
application/api/controller/Common.php

@@ -10,6 +10,7 @@ use app\common\model\Ad;
 use app\common\model\Area;
 use app\common\model\Feedback;
 use app\common\model\FeedbackBusiness;
+use app\common\model\MobileOrder;
 use app\common\service\SmsSend;
 use think\Cache;
 use think\Config;
@@ -360,4 +361,9 @@ class Common extends Api
         $agreement=str_replace("\n",'',$agreement);
         return $agreement;
     }
+
+    //签收订单自动已完成
+    public function order_completed(){
+        MobileOrder::makeOver();
+    }
 }

+ 63 - 2
application/api/controller/User.php

@@ -27,7 +27,7 @@ use app\common\model\User as UserModel;
  */
 class User extends Api
 {
-    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'third','userminilogin','minilogin','wxp','dy_login'];
+    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'third','userminilogin','minilogin','wxp','dy_login','dy_loginn'];
     protected $noNeedRight='*';
     public function _initialize()
     {
@@ -254,6 +254,7 @@ class User extends Api
             'encryptedData'=>['require'],
             'iv'=>['require'],
         ]);
+
         $code2Session=new ByteDanceCode2Session();
         $byteDanceDecrypt=new ByteDanceDecrypt();
         $info=$code2Session->setCode($data['code'])->get();
@@ -266,7 +267,7 @@ class User extends Api
         if($user){
             $this->auth->direct($user['id']);
         }else{
-            $this->auth->register(session_create_id(),'',null,$mobileInfo['phoneNumber']??null,[
+            $this->auth->register(session_create_id(),'',null, $mobileInfo['phoneNumber']??null,[
                 'openid'=>$info['openid'],
                 'unionid'=>$info['unionid'],
                 'avatar'=>$mobileInfo['avatarUrl'],
@@ -277,4 +278,64 @@ class User extends Api
         Db::commit();
         $this->success(__('Logged in successful'), $data);
     }
+
+    /**
+     * 抖音小程序登陆
+     * @ApiParams (name=code,description=code)
+     * @ApiParams (name=encryptedData,description=encryptedData)
+     * @ApiParams (name=iv,description=iv)
+     */
+    public function dy_loginn(){
+        $data=$this->_validate([
+            'code'=>['require'],
+            'encryptedData'=>['require'],
+            'iv'=>['require'],
+        ]);
+        $appid = $this->request->get('appid');
+        $code2Session = new ByteDanceCode2Session();
+        $byteDanceDecrypt = new ByteDanceDecrypt();
+        if($appid){
+            $info = $code2Session->setCodeTwo($data['code'])->getTwo();
+            $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
+            $byteDanceDecrypt->setIv($data['iv']);
+            $byteDanceDecrypt->setSessionKey($info['session_key']);
+            $mobileInfo = $byteDanceDecrypt->get();
+            Db::startTrans();
+            $user = UserModel::where('openid', $info['openid'])->find();
+            if ($user) {
+                $this->auth->direct($user['id']);
+            } else {
+                $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
+                    'openid' => $info['openid'],
+                    'unionid' => $info['unionid'],
+                    'avatar' => $mobileInfo['avatarUrl'],
+                    'nickname' => $mobileInfo['nickName'],
+                ]);
+            }
+            $data = ['userinfo' => $this->auth->getUserinfo()];
+            Db::commit();
+            $this->success(__('Logged in successful'), $data);
+        }else {
+            $info = $code2Session->setCode($data['code'])->get();
+            $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
+            $byteDanceDecrypt->setIv($data['iv']);
+            $byteDanceDecrypt->setSessionKey($info['session_key']);
+            $mobileInfo = $byteDanceDecrypt->get();
+            Db::startTrans();
+            $user = UserModel::where('openid', $info['openid'])->find();
+            if ($user) {
+                $this->auth->direct($user['id']);
+            } else {
+                $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
+                    'openid' => $info['openid'],
+                    'unionid' => $info['unionid'],
+                    'avatar' => $mobileInfo['avatarUrl'],
+                    'nickname' => $mobileInfo['nickName'],
+                ]);
+            }
+            $data = ['userinfo' => $this->auth->getUserinfo()];
+            Db::commit();
+            $this->success(__('Logged in successful'), $data);
+        }
+    }
 }

+ 3 - 0
application/command.php

@@ -32,4 +32,7 @@ return [
     \app\common\command\NoGzlt::class,
     \app\common\command\NoGzltk::class,
     \app\common\command\NoDel::class,
+    \app\common\command\Nogdyd::class,
+    \app\common\command\Nohnlt::class,
+    \app\common\command\Nonx::class,
 ];

+ 2 - 0
application/common.php

@@ -674,6 +674,8 @@ function jsonPost($url, $data = NULL, $times = 0) {
     $res = curl_exec($curl);
     curl_close($curl);
     return $res;
+
+
 }
 
 function httpCurlPost($url, $data, $times = 1) {

+ 37 - 16
application/common/command/DelMobileCommand.php

@@ -16,22 +16,43 @@ class DelMobileCommand extends Command{
 
     protected function execute(Input $input, Output $output)
     {
-        for ($i=1;$i<18700577;$i++){
-            $this->output->info($i);
-            $exists=Mobile::where('id',$i)->value('id');
-            try {
-                $existsInEs=es()->get([
-                    'index'=>EsMobileService::index(),
-                    'id'=>$i
-                ]);
-            }catch (\Exception $exception){
-                $existsInEs=false;
+//        for ($i=135377576;$i<135951454;$i++){
+//            $exists=Mobile::where('id',$i)->value('id');
+//            try {
+//                $existsInEs=es()->get([
+//                    'index'=>EsMobileService::index(),
+//                    'id'=>$i
+//                ]);
+//            }catch (\Exception $exception){
+//                $existsInEs=false;
+//            }
+//            if($exists && $existsInEs){
+//                EsMobileService::delMobiles([$i]);
+//                $this->output->info("删除号码:".$i);
+//                user_log('DelMobileCommand',$i);
+//            }
+//        }
+        $count=0;
+        Mobile::where('type',1)->where('id','<',137372423)->chunk(10000,function ($mobiles)use (&$count){
+            foreach ($mobiles as $mobile){
+                try {
+                    $existsInEs=es()->get([
+                        'index'=>EsMobileService::index(),
+                        'id'=>$mobile['id']
+                    ]);
+                }catch (\Exception $exception){
+                    $existsInEs=false;
+                }
+                if($existsInEs){
+                    EsMobileService::delMobiles([$mobile['id']]);
+                    $count+=1;
+                    $this->output->info($count);
+                    user_log('DelMobileCommand',$mobile['id']);
+                }else {
+                    // $this->output->info($mobiles);
+                    // print_r($mobile);
+                }
             }
-            if(!$exists && $existsInEs){
-                EsMobileService::delMobiles([$i]);
-                $this->output->info("删除号码:".$i);
-                user_log('DelMobileCommand',$i);
-            }
-        }
+        });
     }
 }

+ 1 - 1
application/common/command/EsImportCommand.php

@@ -16,7 +16,7 @@ class EsImportCommand extends Command{
     protected function execute(Input $input, Output $output)
     {
         $count=0;
-        Mobile::where('type',1)->chunk(10000,function ($mobiles)use (&$count){
+        Mobile::where('type',1)->where('id','>',135950454)->chunk(10000,function ($mobiles)use (&$count){
             EsMobileService::addMobiles($mobiles);
             $count+=count($mobiles);
             $this->output->info("count:{$count}");

+ 35 - 0
application/common/library/MobileConstant.php

@@ -64,6 +64,38 @@ class MobileConstant{
         'ABABA'=>['middle'=>'filter_middle_ababa','tail'=>'filter_tail_ababa'],
         'ABAB'=>['middle'=>'filter_middle_abab','tail'=>'filter_tail_abab'],
     ];
+    public static $filterss=[
+        '8A'=>['middle'=>'filter_middle_8a','tail'=>'filter_tail_8a'],
+        '7A'=>['middle'=>'filter_middle_7a','tail'=>'filter_tail_7a'],
+        '6A'=>['middle'=>'filter_middle_6a','tail'=>'filter_tail_6a'],
+        'ABCDEFGH'=>['middle'=>'filter_middle_abcdefgh','tail'=>'filter_tail_abcdefgh'],
+        'ABCDEFG'=>['middle'=>'filter_middle_abcdefg','tail'=>'filter_tail_abcdefg'],
+        'ABCDEF'=>['middle'=>'filter_middle_abcdef','tail'=>'filter_tail_abcdef'],
+        'ABCDE'=>['middle'=>'filter_middle_abcde','tail'=>'filter_tail_abcde'],
+        'ABCD'=>['middle'=>'filter_middle_abcd','tail'=>'filter_tail_abcd'],
+        'ABCABC'=>['middle'=>'filter_middle_abcabc','tail'=>'filter_tail_abcabc'],
+        'ABC'=>['middle'=>'filter_middle_abc','tail'=>'filter_tail_abc'],
+        'AAAAAAB'=>['middle'=>'filter_middle_6ab','tail'=>'filter_tail_6ab'],
+        'AAAAA'=>['middle'=>'filter_middle_5a','tail'=>'filter_tail_5a'],
+        'AAAAAB'=>['middle'=>'filter_middle_5ab','tail'=>'filter_tail_5ab'],
+        'AAAAB'=>['middle'=>'filter_middle_4ab','tail'=>'filter_tail_4ab'],
+        'AAAA'=>['middle'=>'filter_middle_4a','tail'=>'filter_tail_4a'],
+        'AAABBCC'=>['middle'=>'filter_middle_aaabbcc','tail'=>'filter_tail_aaabbcc'],
+        'AAABB'=>['middle'=>'filter_middle_aaabb','tail'=>'filter_tail_aaabb'],
+        'AAAB'=>['middle'=>'filter_middle_3ab','tail'=>'filter_tail_3ab'],
+        'AAA'=>['middle'=>'filter_middle_3a','tail'=>'filter_tail_3a'],
+        'AABBCCDD'=>['middle'=>'filter_middle_aabbccdd','tail'=>'filter_tail_aabbccdd'],
+        'AABBCC'=>['middle'=>'filter_middle_aabbcc','tail'=>'filter_tail_aabbcc'],
+        'AABB'=>['middle'=>'filter_middle_aabb','tail'=>'filter_tail_aabb'],
+        'ABBA'=>['middle'=>'filter_middle_abba','tail'=>'filter_tail_abba'],
+        'ABABABAB'=>['middle'=>'filter_middle_abababab','tail'=>'filter_tail_abababab'],
+        'ABAB'=>['middle'=>'filter_middle_abab','tail'=>'filter_tail_abab'],
+        'ABABABA'=>['middle'=>'filter_middle_abababa','tail'=>'filter_tail_abababa'],
+        'ABABAB'=>['middle'=>'filter_middle_ababab','tail'=>'filter_tail_ababab'],
+        'ABABA'=>['middle'=>'filter_middle_ababa','tail'=>'filter_tail_ababa'],
+        'ABBABB'=>['middle'=>'filter_middle_abbabb','tail'=>'filter_tail_abbabb'],
+        'AABAAB'=>['middle'=>'filter_middle_aabaab','tail'=>'filter_tail_aabaab'],
+    ];
 
     /**
      * @return string[]
@@ -183,6 +215,9 @@ class MobileConstant{
     public static function getFilters(){
         return self::$filters;
     }
+    public static function getFilterss(){
+        return self::$filterss;
+    }
     public static function getUnique(){
         return self::$uniques;
     }

+ 1 - 1
application/common/model/MobileOrder.php

@@ -245,7 +245,7 @@ class MobileOrder extends Model
         $query->where('status',0)->where('expire_time','<',time())->where('amount','>',0);
     }
     public function scopeFilterWillOver(Query $query){
-        $query->whereIn('status',[20,23])->where('send_time','<=',strtotime('-7days'));
+        $query->whereIn('status',[20,23])->where('send_time','<=',strtotime('-3days'));
     }
 
     public function scopeFilterFlow(Query $query){

+ 1 - 1
application/common/service/MobileImport.php

@@ -300,7 +300,7 @@ class MobileImport{
                 NEXT:
                 Db::rollback();
                 $dataRowNum++;
-                usleep(200000);
+                usleep(500000);
             }
             $mobileUpload['rows_total']=$dataRowNum;
             $mobileUpload['rows_fail']=count($errLog);

+ 8 - 1
application/common/service/MobileOrderExport.php

@@ -130,7 +130,14 @@ class MobileOrderExport{
             [
                 'name'=>'付款状态',
                 'value'=>function($model){
-                    return $model['status']==0?'待付款':'已付款';
+//                    return $model['status']==0?'待付款':'已付款';
+                    if($model['status'] == 50){
+                        return '已关闭';
+                    }elseif ($model['status'] == 0){
+                        return '待付款';
+                    }else{
+                        return '已付款';
+                    }
                 },
             ],
             [

+ 1 - 1
application/config.php

@@ -18,7 +18,7 @@ return [
     // 应用命名空间
     'app_namespace'          => 'app',
     // 应用调试模式
-    'app_debug'              => Env::get('app.debug', false),
+    'app_debug'              => Env::get('app.debug', true),
     // 应用Trace
     'app_trace'              => Env::get('app.trace', false),
     // 应用模式状态

+ 6 - 6
application/database.php

@@ -16,15 +16,15 @@ return [
     // 数据库类型
     'type'            => Env::get('database.type', 'mysql'),
     // 服务器地址
-    'hostname'        => Env::get('database.hostname', '127.0.0.1'),
+    'hostname'        => Env::get('database.hostname', '47.111.246.47'),
     // 数据库名
-    'database'        => Env::get('database.database', 'database'),
+    'database'        => Env::get('database.database', 'lh_hdlkeji_com'),
     // 用户名
-    'username'        => Env::get('database.username', 'root'),
+    'username'        => Env::get('database.username', 'lh_hdlkeji_com'),
     // 密码
-    'password'        => Env::get('database.password', 'root'),
+    'password'        => Env::get('database.password', '123456'),
     // 端口
-    'hostport'        => Env::get('database.hostport', ''),
+    'hostport'        => Env::get('database.hostport', '3306'),
     // 连接dsn
     'dsn'             => '',
     // 数据库连接参数
@@ -34,7 +34,7 @@ return [
     // 数据库表前缀
     'prefix'          => Env::get('database.prefix', ''),
     // 数据库调试模式
-    'debug'           => Env::get('database.debug', false),
+    'debug'           => Env::get('database.debug', true),
     // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
     'deploy'          => 0,
     // 数据库读写是否分离 主从式有效

+ 175 - 143
application/service/EsMobileService.php

@@ -15,131 +15,149 @@ class EsMobileService{
     public static function type(){
         return 'mobile';
     }
+    public static function network($network){
+        switch ($network){
+            case '中国移动':
+                return 'zgyd';
+            case '中国联通':
+                return 'zglt';
+            case '中国电信':
+                return 'zgdx';
+            case '中国广电':
+                return 'zggd';
+            case '移动网络':
+                return 'ydwl';
+            case '联通网络':
+                return 'ltwl';
+            case '电信网络':
+                return 'dxwl';
+        }
+    }
     public static function body(){
         return [
             'mappings'=>[
                 'properties'=>[
-                        'id'=>['type'=>'long'],
-                        'status'=>['type'=>'byte'],
-                        'logo'=>['type'=>'text'],
-                        'name'=>['type'=>'text'],
-                        'brand'=>['type'=>'text'],
-                        'no'=>['type'=>'text'],
-                        'type'=>['type'=>'byte'],
-                        'network'=>['type'=>'keyword'],
-                        'proxy_id'=>['type'=>'long'],
-                        'city_id'=>['type'=>'long'],
-                        'city'=>['type'=>'keyword'],
-                        'province_id'=>['type'=>'long'],
-                        'province'=>['type'=>'keyword'],
-                        'amount_exists'=>['type'=>'double'],
-                        'amount_original'=>['type'=>'double'],
-                        'amount_base'=>['type'=>'double'],
-                        'amount_charge'=>['type'=>'double'],
-                        'amount_di'=>['type'=>'double'],
-                        'amount_proxy'=>['type'=>'double'],
-                        'amount_kill'=>['type'=>'double'],
-                        'amount'=>['type'=>'double'],
-                        'create_time'=>['type'=>'long'],
-                        'update_time'=>['type'=>'long'],
-                        'top_time'=>['type'=>'byte'],
-                        'rec_time'=>['type'=>'byte'],
-                        'summary'=>['type'=>'text'],
-                        'is_activity'=>['type'=>'byte'],
-                        'activity_time_end'=>['type'=>'long'],
-                        'filter_num_0'=>['type'=>'byte'],
-                        'filter_num_1'=>['type'=>'byte'],
-                        'filter_num_2'=>['type'=>'byte'],
-                        'filter_num_3'=>['type'=>'byte'],
-                        'filter_num_4'=>['type'=>'byte'],
-                        'filter_num_5'=>['type'=>'byte'],
-                        'filter_num_6'=>['type'=>'byte'],
-                        'filter_num_7'=>['type'=>'byte'],
-                        'filter_num_8'=>['type'=>'byte'],
-                        'filter_num_9'=>['type'=>'byte'],
-                        'filter_middle_3a'=>['type'=>'byte'],
-                        'filter_middle_4a'=>['type'=>'byte'],
-                        'filter_middle_5a'=>['type'=>'byte'],
-                        'filter_middle_6a'=>['type'=>'byte'],
-                        'filter_middle_7a'=>['type'=>'byte'],
-                        'filter_middle_8a'=>['type'=>'byte'],
-                        'filter_middle_abc'=>['type'=>'byte'],
-                        'filter_middle_abcd'=>['type'=>'byte'],
-                        'filter_middle_abcde'=>['type'=>'byte'],
-                        'filter_middle_abcdef'=>['type'=>'byte'],
-                        'filter_middle_abcdefg'=>['type'=>'byte'],
-                        'filter_middle_abcdefgh'=>['type'=>'byte'],
-                        'filter_middle_3ab'=>['type'=>'byte'],
-                        'filter_middle_4ab'=>['type'=>'byte'],
-                        'filter_middle_5ab'=>['type'=>'byte'],
-                        'filter_middle_6ab'=>['type'=>'byte'],
-                        'filter_middle_aabb'=>['type'=>'byte'],
-                        'filter_middle_aabbcc'=>['type'=>'byte'],
-                        'filter_middle_aabbccdd'=>['type'=>'byte'],
-                        'filter_middle_aaabb'=>['type'=>'byte'],
-                        'filter_middle_abbabb'=>['type'=>'byte'],
-                        'filter_middle_aabaab'=>['type'=>'byte'],
-                        'filter_middle_abcabc'=>['type'=>'byte'],
-                        'filter_middle_abba'=>['type'=>'byte'],
-                        'filter_middle_aaabbcc'=>['type'=>'byte'],
-                        'filter_middle_abababab'=>['type'=>'byte'],
-                        'filter_middle_abababa'=>['type'=>'byte'],
-                        'filter_middle_ababab'=>['type'=>'byte'],
-                        'filter_middle_ababa'=>['type'=>'byte'],
-                        'filter_middle_abab'=>['type'=>'byte'],
-                        'filter_no_pos_2'=>['type'=>'byte'],
-                        'filter_no_pos_3'=>['type'=>'byte'],
-                        'filter_no_pos_4'=>['type'=>'byte'],
-                        'filter_no_pos_5'=>['type'=>'byte'],
-                        'filter_no_pos_6'=>['type'=>'byte'],
-                        'filter_no_pos_7'=>['type'=>'byte'],
-                        'filter_no_pos_8'=>['type'=>'byte'],
-                        'filter_no_pos_9'=>['type'=>'byte'],
-                        'filter_no_pos_10'=>['type'=>'byte'],
-                        'filter_no_pos_11'=>['type'=>'byte'],
-                        'sort'=>['type'=>'long'],
-                        'sort_line'=>['type'=>'long'],
-                        'filter_tail_3a'=>['type'=>'byte'],
-                        'filter_tail_4a'=>['type'=>'byte'],
-                        'filter_tail_5a'=>['type'=>'byte'],
-                        'filter_tail_6a'=>['type'=>'byte'],
-                        'filter_tail_7a'=>['type'=>'byte'],
-                        'filter_tail_8a'=>['type'=>'byte'],
-                        'filter_tail_abc'=>['type'=>'byte'],
-                        'filter_tail_abcd'=>['type'=>'byte'],
-                        'filter_tail_abcde'=>['type'=>'byte'],
-                        'filter_tail_abcdef'=>['type'=>'byte'],
-                        'filter_tail_abcdefg'=>['type'=>'byte'],
-                        'filter_tail_abcdefgh'=>['type'=>'byte'],
-                        'filter_tail_3ab'=>['type'=>'byte'],
-                        'filter_tail_4ab'=>['type'=>'byte'],
-                        'filter_tail_5ab'=>['type'=>'byte'],
-                        'filter_tail_6ab'=>['type'=>'byte'],
-                        'filter_tail_aabb'=>['type'=>'byte'],
-                        'filter_tail_aabbcc'=>['type'=>'byte'],
-                        'filter_tail_aabbccdd'=>['type'=>'byte'],
-                        'filter_tail_aaabb'=>['type'=>'byte'],
-                        'filter_tail_abbabb'=>['type'=>'byte'],
-                        'filter_tail_aabaab'=>['type'=>'byte'],
-                        'filter_tail_abcabc'=>['type'=>'byte'],
-                        'filter_tail_abba'=>['type'=>'byte'],
-                        'filter_tail_aaabbcc'=>['type'=>'byte'],
-                        'filter_tail_abababab'=>['type'=>'byte'],
-                        'filter_tail_abababa'=>['type'=>'byte'],
-                        'filter_tail_ababab'=>['type'=>'byte'],
-                        'filter_tail_ababa'=>['type'=>'byte'],
-                        'filter_tail_abab'=>['type'=>'byte'],
-                        'remark'=>['type'=>'text'],
-                        'remark_me'=>['type'=>'text'],
-                        'hold_chan'=>['type'=>'long'],
-                        'hold_user'=>['type'=>'long'],
-                        'admin_id'=>['type'=>'long'],
-                        'activity_time'=>['type'=>'long'],
-                        'stock_num'=>['type'=>'integer'],
-                        'batch_no'=>['type'=>'text'],
-                        'describe'=>['type'=>'text'],
-                        'is_offer'=>['type'=>'integer'],
-                    ]
+                    'id'=>['type'=>'long'],
+                    'status'=>['type'=>'byte'],
+                    'logo'=>['type'=>'text'],
+                    'name'=>['type'=>'text'],
+                    'brand'=>['type'=>'text'],
+                    'no'=>['type'=>'text'],
+                    'type'=>['type'=>'byte'],
+                    'network'=>['type'=>'keyword'],
+                    'proxy_id'=>['type'=>'long'],
+                    'city_id'=>['type'=>'long'],
+                    'city'=>['type'=>'keyword'],
+                    'province_id'=>['type'=>'long'],
+                    'province'=>['type'=>'keyword'],
+                    'amount_exists'=>['type'=>'double'],
+                    'amount_original'=>['type'=>'double'],
+                    'amount_base'=>['type'=>'double'],
+                    'amount_charge'=>['type'=>'double'],
+                    'amount_di'=>['type'=>'double'],
+                    'amount_proxy'=>['type'=>'double'],
+                    'amount_kill'=>['type'=>'double'],
+                    'amount'=>['type'=>'double'],
+                    'create_time'=>['type'=>'long'],
+                    'update_time'=>['type'=>'long'],
+                    'top_time'=>['type'=>'byte'],
+                    'rec_time'=>['type'=>'byte'],
+                    'summary'=>['type'=>'text'],
+                    'is_activity'=>['type'=>'byte'],
+                    'activity_time_end'=>['type'=>'long'],
+                    'filter_num_0'=>['type'=>'byte'],
+                    'filter_num_1'=>['type'=>'byte'],
+                    'filter_num_2'=>['type'=>'byte'],
+                    'filter_num_3'=>['type'=>'byte'],
+                    'filter_num_4'=>['type'=>'byte'],
+                    'filter_num_5'=>['type'=>'byte'],
+                    'filter_num_6'=>['type'=>'byte'],
+                    'filter_num_7'=>['type'=>'byte'],
+                    'filter_num_8'=>['type'=>'byte'],
+                    'filter_num_9'=>['type'=>'byte'],
+                    'filter_middle_3a'=>['type'=>'byte'],
+                    'filter_middle_4a'=>['type'=>'byte'],
+                    'filter_middle_5a'=>['type'=>'byte'],
+                    'filter_middle_6a'=>['type'=>'byte'],
+                    'filter_middle_7a'=>['type'=>'byte'],
+                    'filter_middle_8a'=>['type'=>'byte'],
+                    'filter_middle_abc'=>['type'=>'byte'],
+                    'filter_middle_abcd'=>['type'=>'byte'],
+                    'filter_middle_abcde'=>['type'=>'byte'],
+                    'filter_middle_abcdef'=>['type'=>'byte'],
+                    'filter_middle_abcdefg'=>['type'=>'byte'],
+                    'filter_middle_abcdefgh'=>['type'=>'byte'],
+                    'filter_middle_3ab'=>['type'=>'byte'],
+                    'filter_middle_4ab'=>['type'=>'byte'],
+                    'filter_middle_5ab'=>['type'=>'byte'],
+                    'filter_middle_6ab'=>['type'=>'byte'],
+                    'filter_middle_aabb'=>['type'=>'byte'],
+                    'filter_middle_aabbcc'=>['type'=>'byte'],
+                    'filter_middle_aabbccdd'=>['type'=>'byte'],
+                    'filter_middle_aaabb'=>['type'=>'byte'],
+                    'filter_middle_abbabb'=>['type'=>'byte'],
+                    'filter_middle_aabaab'=>['type'=>'byte'],
+                    'filter_middle_abcabc'=>['type'=>'byte'],
+                    'filter_middle_abba'=>['type'=>'byte'],
+                    'filter_middle_aaabbcc'=>['type'=>'byte'],
+                    'filter_middle_abababab'=>['type'=>'byte'],
+                    'filter_middle_abababa'=>['type'=>'byte'],
+                    'filter_middle_ababab'=>['type'=>'byte'],
+                    'filter_middle_ababa'=>['type'=>'byte'],
+                    'filter_middle_abab'=>['type'=>'byte'],
+                    'filter_no_pos_2'=>['type'=>'byte'],
+                    'filter_no_pos_3'=>['type'=>'byte'],
+                    'filter_no_pos_4'=>['type'=>'byte'],
+                    'filter_no_pos_5'=>['type'=>'byte'],
+                    'filter_no_pos_6'=>['type'=>'byte'],
+                    'filter_no_pos_7'=>['type'=>'byte'],
+                    'filter_no_pos_8'=>['type'=>'byte'],
+                    'filter_no_pos_9'=>['type'=>'byte'],
+                    'filter_no_pos_10'=>['type'=>'byte'],
+                    'filter_no_pos_11'=>['type'=>'byte'],
+                    'sort'=>['type'=>'long'],
+                    'sort_line'=>['type'=>'long'],
+                    'filter_tail_3a'=>['type'=>'byte'],
+                    'filter_tail_4a'=>['type'=>'byte'],
+                    'filter_tail_5a'=>['type'=>'byte'],
+                    'filter_tail_6a'=>['type'=>'byte'],
+                    'filter_tail_7a'=>['type'=>'byte'],
+                    'filter_tail_8a'=>['type'=>'byte'],
+                    'filter_tail_abc'=>['type'=>'byte'],
+                    'filter_tail_abcd'=>['type'=>'byte'],
+                    'filter_tail_abcde'=>['type'=>'byte'],
+                    'filter_tail_abcdef'=>['type'=>'byte'],
+                    'filter_tail_abcdefg'=>['type'=>'byte'],
+                    'filter_tail_abcdefgh'=>['type'=>'byte'],
+                    'filter_tail_3ab'=>['type'=>'byte'],
+                    'filter_tail_4ab'=>['type'=>'byte'],
+                    'filter_tail_5ab'=>['type'=>'byte'],
+                    'filter_tail_6ab'=>['type'=>'byte'],
+                    'filter_tail_aabb'=>['type'=>'byte'],
+                    'filter_tail_aabbcc'=>['type'=>'byte'],
+                    'filter_tail_aabbccdd'=>['type'=>'byte'],
+                    'filter_tail_aaabb'=>['type'=>'byte'],
+                    'filter_tail_abbabb'=>['type'=>'byte'],
+                    'filter_tail_aabaab'=>['type'=>'byte'],
+                    'filter_tail_abcabc'=>['type'=>'byte'],
+                    'filter_tail_abba'=>['type'=>'byte'],
+                    'filter_tail_aaabbcc'=>['type'=>'byte'],
+                    'filter_tail_abababab'=>['type'=>'byte'],
+                    'filter_tail_abababa'=>['type'=>'byte'],
+                    'filter_tail_ababab'=>['type'=>'byte'],
+                    'filter_tail_ababa'=>['type'=>'byte'],
+                    'filter_tail_abab'=>['type'=>'byte'],
+                    'remark'=>['type'=>'text'],
+                    'remark_me'=>['type'=>'text'],
+                    'hold_chan'=>['type'=>'long'],
+                    'hold_user'=>['type'=>'long'],
+                    'admin_id'=>['type'=>'long'],
+                    'activity_time'=>['type'=>'long'],
+                    'stock_num'=>['type'=>'integer'],
+                    'batch_no'=>['type'=>'text'],
+                    'describe'=>['type'=>'text'],
+                    'is_offer'=>['type'=>'integer'],
+                ]
             ]
         ];
     }
@@ -160,9 +178,18 @@ class EsMobileService{
         }
         $mobile->hidden([],true);
         $mobile['describe']=$mobile['info']['describe']??'';
+        $mobile['yys']=self::network($mobile['network']);
+        // $mobile->toArray();
+
+        $mobile = $mobile->toArray();
+        $mobile['amount'] = intval($mobile['amount']);
+        $mobile['total'] = intval($mobile['amount']);
+
+        // dump($mobile);
+
         es()->index([
             'index'=>self::index(),
-            'body'=>$mobile->toArray(),
+            'body'=>$mobile,
             'id'=>$mobile['id'],
         ]);
     }
@@ -171,8 +198,13 @@ class EsMobileService{
         foreach ($mobiles as $mobile){
             $mobile->hidden([],true);
             $mobile['describe']=$mobile['info']['describe']??'';
+            $mobile['yys']=self::network($mobile['network']);
+            $mobile = $mobile->toArray();
+            $mobile['amount'] = intval($mobile['amount']);
+            $mobile['total'] = intval($mobile['amount']);
             $body[]=['create'=>['_index'=>self::index(),'_id'=>$mobile['id']]];
-            $body[]=$mobile->toArray();
+            $body[]=$mobile;
+            // dump($body);
         }
         es()->bulk([
             'index'=>self::index(),
@@ -222,26 +254,26 @@ class EsMobileService{
             return true;
         }
         $ids=array_filter($ids);
-/*        $field=[];
-        foreach ($columnArr as $key=>$value){
-            $field[]=sprintf('ctx._source["%s"]=%s',$key,$value);
-        }
-        $config=[
-            'index'=>self::index(),
-            'body'=>[
-                'query'=>[
-                    'terms'=>[
-                        'id'=>$ids
+        /*        $field=[];
+                foreach ($columnArr as $key=>$value){
+                    $field[]=sprintf('ctx._source["%s"]=%s',$key,$value);
+                }
+                $config=[
+                    'index'=>self::index(),
+                    'body'=>[
+                        'query'=>[
+                            'terms'=>[
+                                'id'=>$ids
+                            ]
+                        ],
+                        'script'=>[
+                            //'inline'=>implode(';',$field),
+                            'source'=>implode(';',$field),
+                            'params'=>$columnArr,
+                        ]
                     ]
-                ],
-                'script'=>[
-                    //'inline'=>implode(';',$field),
-                    'source'=>implode(';',$field),
-                    'params'=>$columnArr,
-                ]
-            ]
-        ];
-        es()->updateByQuery($config);*/
+                ];
+                es()->updateByQuery($config);*/
         foreach ($ids as $id){
             es()->update([
                 'index'=>self::index(),
@@ -317,7 +349,7 @@ class EsMobileService{
         $size = 200;
         $all_page = 20;
         $count = 0;
-        for($page = 1;$page<=10;$page++){
+        for($page = 1;$page<=100;$page++){
             $limit = ($page-1)*$size;
             $results=es()->search([
                 'index'=>self::index(),

+ 27 - 6
application/service/GantanhaoService.php

@@ -16,7 +16,9 @@ class GantanhaoService{
      * 订单同步
      */
     public static function orderPurchase(MobileOrder $order){
-        $url = 'http://notify.91haoka.cn/api/plan-market/order/purchase';
+//        $url = 'http://notify.91haoka.cn/api/plan-market/order/purchase';
+        //敢探号提单V2
+        $url = 'https://notify.91haoka.cn/api/plan-market/order/purchase/v2';
 
         $mobile = $order['info']['mobile'];
         // $data = [
@@ -55,23 +57,23 @@ class GantanhaoService{
                 ],
                 [
                     'name' => 'id_name',
-                    'contents' => $order['name']
+                    'contents' => self::encrypt($order['name'])
                 ],
                 [
                     'name' => 'id_num',
-                    'contents' => $order['id_no']
+                    'contents' => self::encrypt($order['id_no'])
                 ],
                 [
                     'name' => 'mobile',
-                    'contents' => $order['phone']
+                    'contents' => self::encrypt($order['phone'])
                 ],
                 [
                     'name' => 'name',
-                    'contents' => $order['name']
+                    'contents' => self::encrypt($order['name'])
                 ],
                 [
                     'name' => 'address',
-                    'contents' => $order['address']
+                    'contents' => self::encrypt($order['address'])
                 ],
                 [
                     'name' => 'pretty_number',
@@ -254,4 +256,23 @@ class GantanhaoService{
             throw new \Exception($e->getMessage());
         }
     }
+
+    /**
+     *敢探号提单V2
+     */
+    public static function encrypt($data)
+    {
+        $aes_key = '121';
+        return base64_encode(openssl_encrypt($data, 'aes-256-ecb', $aes_key, OPENSSL_RAW_DATA));
+    }
+
+    /**
+     * 解密
+     */
+    public static function jiemi($data){
+        $aes_key = '121';
+        $data = base64_decode($data);
+        $data = openssl_decrypt($data, 'aes-256-ecb', $aes_key, OPENSSL_RAW_DATA);
+        return $data;
+    }
 }

+ 6 - 0
application/service/byte_dance/ByteDance.php

@@ -24,6 +24,12 @@ class ByteDance{
     public static function appSecret(){
         return config('site.byte_dance_mapp_appSecret');
     }
+    public static function appIdTwo(){
+        return config('site.byte_dance_mapp_two_appld');
+    }
+    public static function appSecretTwo(){
+        return config('site.byte_dance _mapp_two_appSecret');
+    }
     public static function httpGet($url){
         $request=(new Client)
             ->get($url);

+ 15 - 0
application/service/byte_dance/ByteDanceAccessToken.php

@@ -21,6 +21,21 @@ class ByteDanceAccessToken implements ByteDanceInterface {
         }
         return $token;
     }
+    public function getWangKa()
+    {
+        $token=Cache::get($this->cacheName);
+        if(!$token){
+            $request=ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/token',[
+                'appid'=>ByteDance::appIdTwo(),
+                'secret'=>ByteDance::appSecretTwo(),
+                'grant_type'=>'client_credential',
+            ]);
+            $token=$request['access_token'];
+            Cache::set($this->cacheName,$token,$request['expires_in']-10);
+        }
+        return $token;
+    }
+
 
     /**
      * @param mixed $appId

+ 18 - 0
application/service/byte_dance/ByteDanceCode2Session.php

@@ -23,4 +23,22 @@ class ByteDanceCode2Session implements ByteDanceInterface {
             'code'=>$this->code,
         ];
     }
+    //新小程序
+    public function setCodeTwo($code)
+    {
+        $this->code = $code;
+        return $this;
+    }
+    public function getTwo()
+    {
+        return ByteDance::httpPost('https://developer.toutiao.com/api/apps/v2/jscode2session',$this->paramsTwo());
+    }
+
+    protected function paramsTwo(){
+        return [
+            'appid'=>ByteDance::appIdTwo(),
+            'secret'=>ByteDance::appSecretTwo(),
+            'code'=>$this->code,
+        ];
+    }
 }

+ 48 - 0
application/service/byte_dance/ByteDanceOrderPush.php

@@ -81,6 +81,54 @@ class ByteDanceOrderPush implements ByteDanceInterface {
             ]);
         }
     }
+    public function getWangka()
+    {
+        $openid=$this->getOpenid();
+        if(!$openid){
+            return false;
+        }
+        if(!$this->payment){
+            return false;
+        }
+        $params=[
+            'access_token'=>(new ByteDanceAccessToken())->getWangKa(),
+            'app_name'=>'douyin',
+            'open_id'=>$openid,
+            'order_detail'=>json_encode([
+                'order_id'=>$this->payment['order_no'],
+                'create_time'=>$this->order['create_time']*1000,
+                'status'=>$this->order->getOrderStatusText(),
+                'amount'=>1,
+                'total_price'=>$this->order['amount']*100,
+                //'detail_url'=>"pages/payment/payment?id={$this->order->id}",
+                'detail_url'=>"pages/index/index",
+                'item_list'=>[
+                    [
+                        'item_code'=>(string)$this->order['mobile_id'],
+                        'img'=>$this->getImg(),
+                        'title'=>$this->getTitle(),
+                        'price'=>$this->order['amount']*100,
+                    ]
+                ]
+            ],256),
+            'order_status'=>$this->getOrderStatus(),
+            'order_type'=>0,
+            'update_time'=>time()*1000,
+        ];
+        try {
+            $data=ByteDance::httpPost('https://developer.toutiao.com/api/apps/order/v2/push',$params,[],false);
+            if($data['err_code']!=0){
+                unset($params['access_token']);
+                throw_user($data['err_msg'],$params);
+            }
+        }catch (\Exception $e){
+            user_log('ByteDanceOrderPush',[
+                'e'=>$e->getMessage(),
+                'file'=>$e->getFile(),
+                'line'=>$e->getLine(),
+            ]);
+        }
+    }
     protected function getOpenid(){
         $user_id=$this->order['user_id'];
         if($user_id){

+ 18 - 0
application/service/byte_dance/ByteDancePay.php

@@ -37,6 +37,24 @@ class ByteDancePay implements ByteDanceInterface {
         return $class;
     }
 
+    /**
+     * @param mixed $order_no
+     * @param $amount
+     * @param $subject
+     * @return ByteDancePay
+     */
+    public static function setInfo2($order_no,$amount,$subject)
+    {
+        $class=new self;
+        $class->data['app_id']=ByteDance::appIdTwo();
+        $class->data['out_order_no'] = $order_no;
+        $class->data['total_amount'] = $amount*100;
+        $class->data['subject'] = $subject;
+        $class->data['body'] = $subject;
+        $class->data['notify_url']=request()->domain().'/index/payment/notify_dy/order_no/'.$order_no;
+        return $class;
+    }
+
     public function get()
     {
         $data=$this->data;

+ 207 - 203
public/assets/js/backend/mobile.js

@@ -105,210 +105,210 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
             let make_export
             let sub=admin_Info.is_sub
             let columns= [
-                    {checkbox: true},
-                    {field: 'id', title: __('Id'),operate: false,},
-                    {field: 'no', title: __('手机号'), operate: "LIKE"},
-                    {field: 'filter_first_last', title: __('筛选位置'),visible: false,operate: '=',searchList: {1:'尾部',2:'中间'},defaultValue:1},
-                    {field: 'province', title: __('Province'),operate: 'LIKE'},
-                    {field: 'city', title: __('归属地'),operate: 'LIKE'},
-                    {field: 'exclude_nums', title: __('排除数字'),visible:false,data:'data-field="title" data-multiple="true" data-source="mobile/exclude_nums" readonly',addclass: 'selectpage'},
-                    {field: 'network', title: __('运营商'), formatter(network){
+                {checkbox: true},
+                {field: 'id', title: __('Id'),operate: false,},
+                {field: 'no', title: __('手机号'), operate: "LIKE"},
+                {field: 'filter_first_last', title: __('筛选位置'),visible: false,operate: '=',searchList: {1:'尾部',2:'中间'},defaultValue:1},
+                {field: 'province', title: __('Province'),operate: 'LIKE'},
+                {field: 'city', title: __('归属地'),operate: 'LIKE'},
+                {field: 'exclude_nums', title: __('排除数字'),visible:false,data:'data-field="title" data-multiple="true" data-source="mobile/exclude_nums" readonly',addclass: 'selectpage'},
+                {field: 'network', title: __('运营商'), formatter(network){
                         return `<span style="background: ${networkColor[network]};color: white;border-radius: 5px;padding: 3px 6px;">${network}</span>`
-                        },searchList: mobile_network},
-                    {field: 'proxy_id', title: __('供应商')/*, searchList: proxy*/,formatter(_,mobile) {
-                            return mobile.proxy_name;
-                        }},
-                    {field: 'brand', title: __('卡品牌'), formatter: Table.api.formatter.label, operate: "LIKE"},
-                    {
-                        field: 'rules', title: __('规律'), searchList: Object.keys(filters), formatter(a) {
-                            return a.join('<br>')
+                    },searchList: mobile_network},
+                {field: 'proxy_id', title: __('供应商')/*, searchList: proxy*/,formatter(_,mobile) {
+                        return mobile.proxy_name;
+                    }},
+                {field: 'brand', title: __('卡品牌'), formatter: Table.api.formatter.label, operate: "LIKE"},
+                {
+                    field: 'rules', title: __('规律'), searchList: Object.keys(filters), formatter(a) {
+                        return a.join('<br>')
+                    }
+                },
+                {
+                    field: 'info.describe',
+                    title: __('套餐信息'),
+                    operate: "like",
+                    formatter: Table.api.formatter.content,
+                    width: 200
+                },
+                {field: 'amount_original', title: __('Amount_original'), operate: false},
+                {field: 'amount_di', title: __('底价'), operate: 'BETWEEN'},
+                {field: 'amount_proxy', title: __('代理价'), operate: 'BETWEEN'},
+                {field: 'amount_base', title: __('Amount'), operate: 'BETWEEN'},
+                {field: 'amount_kill', title: __('秒杀价'), operate: 'BETWEEN'},
+                {field: 'amount_charge', title: __('预存话费'), operate: 'BETWEEN'},
+                {field: 'api_goods_id', title: __('Api商品id')},
+                {field: 'remark', title: __('备注'), operate: 'like'},
+                {
+                    //field: sub?'mobile_sub.sub_top_time':'top_time',
+                    field: 'top_time',
+                    title: __('Top_time'),
+                    //operate: 'RANGE',
+                    //addclass: 'datetimerange',
+                    autocomplete: false,
+                    /* formatter(a, b, c) {
+                         return `<a data-toggle="switcher" class="btn-switcher btn-change-top" data-id="${b.id}" data-value="${a ? a : ''}">
+                             <i class="fa fa-toggle-on text-success ${a ? '' : 'fa-flip-horizontal text-gray'} fa-2x"></i>
+                             </a>`
+                     }*/
+                    formatter: Table.api.formatter.label,
+                    /*formatter(a){
+                        if(a>0){
+                            return '<span class="label label-success">是</span>'
                         }
+                        return '<span class="label label-default">否</span>'
+                    },*/
+                    searchList: {1:'置顶1',2:'置顶2',3:'置顶3',4:'置顶4',5:'置顶5',0:'否'},
+                },
+                {
+                    //field: sub?'mobile_sub.sub_rec_time':'rec_time',
+                    field: 'rec_time',
+                    title: __('Rec_time'),
+                    //operate: 'RANGE',
+                    //addclass: 'datetimerange',
+                    autocomplete: false,
+                    /*formatter(a, b, c) {
+                        return `<a data-toggle="switcher" class="btn-switcher btn-change-rec" data-id="${b.id}" data-value="${a ? a : ''}">
+                            <i class="fa fa-toggle-on text-success ${a ? '' : 'fa-flip-horizontal text-gray'} fa-2x"></i>
+                            </a>`
+                    }*/
+                    formatter: Table.api.formatter.label,
+                    /*formatter(a){
+                        if(a>0){
+                            return '<span class="label label-success">是</span>'
+                        }
+                        return '<span class="label label-default">否</span>'
+                    },*/
+                    searchList: {1:'推荐1',2:'推荐2',3:'推荐3',4:'推荐4',5:'推荐5',0:'否'},
+                },
+                {
+                    field: 'is_offer',
+                    title: '特价号',
+                    autocomplete: false,
+                    formatter(a){
+                        if(a>0){
+                            return '<span class="label label-success">是</span>'
+                        }
+                        return '<span class="label label-default">否</span>'
                     },
-                    {
-                        field: 'info.describe',
-                        title: __('套餐信息'),
-                        operate: "like",
-                        formatter: Table.api.formatter.content,
-                        width: 200
-                    },
-                    {field: 'amount_original', title: __('Amount_original'), operate: false},
-                    {field: 'amount_di', title: __('底价'), operate: 'BETWEEN'},
-                    {field: 'amount_proxy', title: __('代理价'), operate: 'BETWEEN'},
-                    {field: 'amount_base', title: __('Amount'), operate: 'BETWEEN'},
-                    {field: 'amount_kill', title: __('秒杀价'), operate: 'BETWEEN'},
-                    {field: 'amount_charge', title: __('预存话费'), operate: 'BETWEEN'},
-                    {field: 'api_goods_id', title: __('Api商品id')},
-                    {field: 'remark', title: __('备注'), operate: 'like'},
-                    {
-                        //field: sub?'mobile_sub.sub_top_time':'top_time',
-                        field: 'top_time',
-                        title: __('Top_time'),
-                        //operate: 'RANGE',
-                        //addclass: 'datetimerange',
-                        autocomplete: false,
-                        /* formatter(a, b, c) {
-                             return `<a data-toggle="switcher" class="btn-switcher btn-change-top" data-id="${b.id}" data-value="${a ? a : ''}">
-                                 <i class="fa fa-toggle-on text-success ${a ? '' : 'fa-flip-horizontal text-gray'} fa-2x"></i>
-                                 </a>`
-                         }*/
-                        formatter: Table.api.formatter.label,
-                        /*formatter(a){
-                            if(a>0){
-                                return '<span class="label label-success">是</span>'
-                            }
-                            return '<span class="label label-default">否</span>'
-                        },*/
-                        searchList: {1:'置顶1',2:'置顶2',3:'置顶3',4:'置顶4',5:'置顶5',0:'否'},
-                    },
-                    {
-                        //field: sub?'mobile_sub.sub_rec_time':'rec_time',
-                        field: 'rec_time',
-                        title: __('Rec_time'),
-                        //operate: 'RANGE',
-                        //addclass: 'datetimerange',
-                        autocomplete: false,
-                        /*formatter(a, b, c) {
-                            return `<a data-toggle="switcher" class="btn-switcher btn-change-rec" data-id="${b.id}" data-value="${a ? a : ''}">
-                                <i class="fa fa-toggle-on text-success ${a ? '' : 'fa-flip-horizontal text-gray'} fa-2x"></i>
-                                </a>`
-                        }*/
-                        formatter: Table.api.formatter.label,
-                        /*formatter(a){
-                            if(a>0){
-                                return '<span class="label label-success">是</span>'
-                            }
-                            return '<span class="label label-default">否</span>'
-                        },*/
-                        searchList: {1:'推荐1',2:'推荐2',3:'推荐3',4:'推荐4',5:'推荐5',0:'否'},
-                    },
-                    {
-                        field: 'is_offer',
-                        title: '特价号',
-                        autocomplete: false,
-                        formatter(a){
-                            if(a>0){
-                                return '<span class="label label-success">是</span>'
+                    searchList: {1:'是',0:'否'},
+                },
+                {
+                    field: 'buttons',
+                    width: "120px",
+                    title: __('操作'),
+                    table: table,
+                    events: Table.api.events.operate,
+                    operate: false,
+                    formatter: Table.api.formatter.buttons,
+                    buttons: [
+                        {
+                            name: 'detail',
+                            text: __('预占'),
+                            title: __('预占'),
+                            classname: 'btn btn-xs btn-info btn-dialog',
+                            url: 'mobile/takeit',
+                            callback: function (data) {
+                            },
+                            visible: function (row) {
+                                return table.data('operate-mobile_takeit') && row.is_activity===0;
                             }
-                            return '<span class="label label-default">否</span>'
                         },
-                        searchList: {1:'是',0:'否'},
-                    },
-                    {
-                        field: 'buttons',
-                        width: "120px",
-                        title: __('操作'),
-                        table: table,
-                        events: Table.api.events.operate,
-                        operate: false,
-                        formatter: Table.api.formatter.buttons,
-                        buttons: [
-                            {
-                                name: 'detail',
-                                text: __('预占'),
-                                title: __('预占'),
-                                classname: 'btn btn-xs btn-info btn-dialog',
-                                url: 'mobile/takeit',
-                                callback: function (data) {
-                                },
-                                visible: function (row) {
-                                    return table.data('operate-mobile_takeit') && row.is_activity===0;
-                                }
+                        {
+                            name: 'detail',
+                            text: __('取消预占'),
+                            title: __('取消预占'),
+                            classname: 'btn btn-xs btn-warning btn-ajax',
+                            confirm: '确认取消吗?',
+                            url: 'mobile/activity_cancel?aaa=1',
+                            success: function (data) {
+                                $('.btn-refresh').trigger('click')
                             },
-                            {
-                                name: 'detail',
-                                text: __('取消预占'),
-                                title: __('取消预占'),
-                                classname: 'btn btn-xs btn-warning btn-ajax',
-                                confirm: '确认取消吗?',
-                                url: 'mobile/activity_cancel?aaa=1',
-                                success: function (data) {
-                                    $('.btn-refresh').trigger('click')
-                                },
-                                visible: function (row) {
-                                    return table.data('operate-activity_cancel') && row.is_activity===1;
-                                },
-                                disable(row){
-                                    return admin_Info.is_sub && row.hold_chan!==admin_Info.id
-                                }
+                            visible: function (row) {
+                                return table.data('operate-activity_cancel') && row.is_activity===1;
                             },
-                            {
-                                name: 'detail',
-                                text: __('记录'),
-                                title: __('记录'),
-                                classname: 'btn btn-xs btn-info btn-dialog',
-                                url: 'mobile_price_log/index?a=1',
-                                callback: function (data) {
-                                },
-                                visible: function (row) {
-                                    return true;
-                                }
+                            disable(row){
+                                return admin_Info.is_sub && row.hold_chan!==admin_Info.id
+                            }
+                        },
+                        {
+                            name: 'detail',
+                            text: __('记录'),
+                            title: __('记录'),
+                            classname: 'btn btn-xs btn-info btn-dialog',
+                            url: 'mobile_price_log/index?a=1',
+                            callback: function (data) {
                             },
-                        ]
-                    },
-                    {field: 'status', title: __('号码状态'), formatter (a,b){
-                            if(b.is_activity){
-                                return `<span style="color: red"><div>●</div>预占</span>`
-                            }else{
-                                return mobileStatus[a]
+                            visible: function (row) {
+                                return true;
                             }
-                        }, searchList: mobileStatus},
-                    {
-                        field: 'update_time',
-                        title: __('Update_time'),
-                        operate: 'RANGE',
-                        addclass: 'datetimerange',
-                        autocomplete: false,
-                        formatter: Table.api.formatter.datetime
-                    },
-                    {
-                        field: 'create_time',
-                        title: __('上架时间'),
-                        operate: 'RANGE',
-                        addclass: 'datetimerange',
-                        autocomplete: false,
-                        formatter: Table.api.formatter.datetime
-                    },
-                    //{field: sub?'mobile_sub.sub_sort':'sort', title: __('Sort'), operate: "BETWEEN"},
-                    {field: 'sort', title: __('Sort'), operate: "BETWEEN"},
-                    {field: 'hold_chan', title: __('预占通道'), operate: "="},
-                    {field: 'hold_user', title: __('预占用户ID'), operate: "="},
-                    {field: 'admin_id', title: __('上传用户'), operate: "="},
-                    {field: 'search_precise', title: __('精准搜索'),visible:false,searchList(){
+                        },
+                    ]
+                },
+                {field: 'status', title: __('号码状态'), formatter (a,b){
+                        if(b.is_activity){
+                            return `<span style="color: red"><div>●</div>预占</span>`
+                        }else{
+                            return mobileStatus[a]
+                        }
+                    }, searchList: mobileStatus},
+                {
+                    field: 'update_time',
+                    title: __('Update_time'),
+                    operate: 'RANGE',
+                    addclass: 'datetimerange',
+                    autocomplete: false,
+                    formatter: Table.api.formatter.datetime
+                },
+                {
+                    field: 'create_time',
+                    title: __('上架时间'),
+                    operate: 'RANGE',
+                    addclass: 'datetimerange',
+                    autocomplete: false,
+                    formatter: Table.api.formatter.datetime
+                },
+                //{field: sub?'mobile_sub.sub_sort':'sort', title: __('Sort'), operate: "BETWEEN"},
+                {field: 'sort', title: __('Sort'), operate: "BETWEEN"},
+                {field: 'hold_chan', title: __('预占通道'), operate: "="},
+                {field: 'hold_user', title: __('预占用户ID'), operate: "="},
+                {field: 'admin_id', title: __('上传用户'), operate: "="},
+                {field: 'search_precise', title: __('精准搜索'),visible:false,searchList(){
                         return Template('preciseInputs',{})
                     }},
-                    {
-                        field: 'operate',
-                        title: __('Operate'),
-                        table: table,
-                        width: 150,
-                        events: Table.api.events.operate,
-                        formatter: Table.api.formatter.operate,
-                        buttons: [
-                            {
-                                name: 'detail',
-                                text: __('记录'),
-                                title: __('记录'),
-                                classname: 'btn btn-xs btn-info btn-dialog',
-                                url: 'mobile_price_log/index?a=1',
-                                callback: function (data) {
-                                },
-                                visible: function (row) {
-                                    return table.data('operate-mobile_price_log');
-                                }
+                {
+                    field: 'operate',
+                    title: __('Operate'),
+                    table: table,
+                    width: 150,
+                    events: Table.api.events.operate,
+                    formatter: Table.api.formatter.operate,
+                    buttons: [
+                        {
+                            name: 'detail',
+                            text: __('记录'),
+                            title: __('记录'),
+                            classname: 'btn btn-xs btn-info btn-dialog',
+                            url: 'mobile_price_log/index?a=1',
+                            callback: function (data) {
                             },
-                            {
-                                name: 'detail',
-                                text: '排序',
-                                title: '排序',
-                                classname: 'btn btn-dialog btn-info btn-xs',
-                                url: 'mobile/mobile_sort',
-                                visible(row){
-                                    return table.data('operate-mobile_sort')
-                                }
+                            visible: function (row) {
+                                return table.data('operate-mobile_price_log');
                             }
-                        ]
-                    },
-                ]
+                        },
+                        {
+                            name: 'detail',
+                            text: '排序',
+                            title: '排序',
+                            classname: 'btn btn-dialog btn-info btn-xs',
+                            url: 'mobile/mobile_sort',
+                            visible(row){
+                                return table.data('operate-mobile_sort')
+                            }
+                        }
+                    ]
+                },
+            ]
             if(!admin_Info.is_manager){
                 Table.api.removeColumn('proxy_id',columns)
             }
@@ -476,17 +476,21 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
 
             let searchForm=$('.form-commonsearch')
             $('.btn-del-condition').click(function (){
-                parent.layer.prompt({title:'如果未选择条件则删除全部号码!',formType:1,success(layero){
-                        layero.find('.layui-layer-input').attr('placeholder','二级密码')
-                    }},function (pass,idx){
-                    parent.layer.close(idx)
-                    _delete_condition=true
-                    secpwd=pass
-                    deleteIdx=layer.load()
-                    searchForm.find('button[type="submit"]').click()
-                    _delete_condition=false
-                    secpwd=null
-                })
+                var rows = table.bootstrapTable('getOptions').totalRows;
+                parent.layer.prompt(
+                    {
+                        title:'如果未选择条件则删除全部号码!',
+                        formType:1,success(layero){
+                            layero.find('.layui-layer-input').attr('placeholder','二级密码(本次删除'+rows+'项)')
+                        }},function (pass,idx){
+                        parent.layer.close(idx)
+                        _delete_condition=true
+                        secpwd=pass
+                        deleteIdx=layer.load()
+                        searchForm.find('button[type="submit"]').click()
+                        _delete_condition=false
+                        secpwd=null
+                    })
             })
             $('.btn-del-all').click(function (){
                 let href=$(this).data('href')
@@ -905,7 +909,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                     data:{row:{act:act,no:$('.input-no').val()}},
                     success({code,msg,data}){
                         if(code===1){
-                             let num=data.num||0
+                            let num=data.num||0
                             layer.alert(`成功操作${num}个号码`)
                             parent.refresh()
                         }else{

+ 26 - 20
public/assets/js/backend/mobile_flow.js

@@ -9,7 +9,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'], function
                     add_url: 'mobile_flow/add',
                     edit_url: 'mobile_flow/edit',
                     sort_url: 'mobile_flow/sort',
-                    del_url: 'mobile_flow/del',
+                    // del_url: 'mobile_flow/del',
                     multi_url: 'mobile_flow/multi',
                     multi_down_url: 'mobile_flow/multi_down',
                     multi_up_url: 'mobile_flow/multi_up',
@@ -84,6 +84,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'], function
             });
 
             var table = $("#table");
+
+            table.on('post-common-search.bs.table', function (event, table) {
+                var form = $("form", table.$commonsearch);
+                $("input[name='proxy_id']", form).addClass("selectpage").data("source", "auth/admin/index2").data("params",{"custom[proxy]":"0","custom[sub]":"1"}).data("primaryKey", "nickname").data("field", "nickname").data("orderBy", "id asc");
+                Form.events.cxselect(form);
+                Form.events.selectpage(form);
+            });
+
             $(".btn-add").data("area", ["100%","100%"]);
             // 初始化表格
             table.bootstrapTable({
@@ -97,12 +105,10 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'], function
                         {checkbox: true},
                         {field: 'id', title: __('Id')},
                         //{field: 'proxy_role', title: __('站点选择'),visible:false,searchable:true,operate:false,searchList:{1:"主站", 2:"本店"},defaultValue:1},
-                        {field: 'proxy_id', title: __('代理商'),formatter:function(value, mobile){
-                            return value ? (mobile.proxy ? mobile.proxy.nickname:''): '';
-                        },visible:(subs ? true : false),searchList:subs,searchable:(subs ? true : false),defaultValue:0},
+                        {field: 'proxy_id', title: __('代理商')},
                         {field: 'product_no', title: __('产品编码')},
                         {field: 'name', title: __('商品名称'),operate: 'like',formatter(a,mobile){
-                            let arr=[]
+                                let arr=[]
                                 arr.push(`<div class="break-words" style="display:flex;align-items:center;">`)
                                 if(mobile.logo) {
                                     let logo=mobile.logo.split(',')[0]
@@ -113,7 +119,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'], function
                                 return arr.join('')
                             },align:'left',valign:'top'},
                         {
-                            field: 'brand', 
+                            field: 'brand',
                             title: __('运营商'),
                             formatter: Table.api.formatter.label,
                             custom:{'flow_limit_yd':'success', 'flow_limit_lt':'danger', 'flow_limit_dx':'info', 'flow_limit_gd':'success'},
@@ -130,20 +136,20 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'], function
                         {field:'status',title:'系统售卖状态',formatter: Table.api.formatter.label,searchList:flow_status,defaultValue:0,},
                         // {field:'proxy_status',title:'展示状态',formatter: Table.api.formatter.label,searchList:flow_status,defaultValue:(superAdmin ? null : 0),visible:(superAdmin ? false : true),searchable:(superAdmin ? false : true)},
                         {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: function(value, row, index){
-                            // return Table.api.formatter.operate;
-                            var that = $.extend({}, this);
-                            var table = $(that.table).clone(true);
-                            if(row.editAuth == false){
-                                $(table).data("operate-edit", null);
-                                that.table = table;
-                            }
-                            if(row.delAuth == false){
-                                $(table).data("operate-del", null);
-                                that.table = table;
-                            }
+                                // return Table.api.formatter.operate;
+                                var that = $.extend({}, this);
+                                var table = $(that.table).clone(true);
+                                if(row.editAuth == false){
+                                    $(table).data("operate-edit", null);
+                                    that.table = table;
+                                }
+                                if(row.delAuth == false){
+                                    $(table).data("operate-del", null);
+                                    that.table = table;
+                                }
 
-                            return Table.api.formatter.operate.call(that, value, row, index);
-                        },buttons:[
+                                return Table.api.formatter.operate.call(that, value, row, index);
+                            },buttons:[
                                 {
                                     name: 'detail',
                                     title: __('复制链接'),
@@ -183,7 +189,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'], function
                     url: $.fn.bootstrapTable.defaults.extend.sort_url,
                     data:{id,sort:this.value}
                 },()=>{
-                   // $('.btn-refresh').trigger('click')
+                    // $('.btn-refresh').trigger('click')
                     layer.close(idx)
                 },(res)=>{
                     layer.close(idx)

+ 456 - 419
public/assets/js/backend/mobile_order.js

@@ -1,450 +1,487 @@
 define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
     function ($, undefined, Backend, Table, Form,clipboard) {
 
-    var Controller = {
-        index: async function () {
-            // 初始化表格参数配置
-            Table.api.init({
-                extend: {
-                    index_url: 'mobile_order/index' + location.search,
-                    add_url: 'mobile_order/add',
-                    edit_url: 'mobile_order/edit',
-                    del_url: 'mobile_order/del',
-                    multi_url: 'mobile_order/multi',
-                    import_url: 'mobile_order/import',
-                    show_open_data_url: 'mobile_order/show_open_data',
-                    table: 'mobile_order',
-                }
-            });
+        var Controller = {
+            index: async function () {
+                // 初始化表格参数配置
+                Table.api.init({
+                    extend: {
+                        index_url: 'mobile_order/index' + location.search,
+                        add_url: 'mobile_order/add',
+                        edit_url: 'mobile_order/edit',
+                        del_url: 'mobile_order/del',
+                        multi_url: 'mobile_order/multi',
+                        import_url: 'mobile_order/import',
+                        show_open_data_url: 'mobile_order/show_open_data',
+                        table: 'mobile_order',
+                    }
+                });
 
-            var table = $("#table");
+                var table = $("#table");
 
-            let is_proxy = Config.is_proxy;
-            let is_proxy_operate = false;
-            let is_proxy_operate_eq = false;
-            if(is_proxy==0){
-                is_proxy_operate = 'LIKE';
-                is_proxy_operate_eq = '=';
-            }
+                table.on('post-common-search.bs.table', function (event, table) {
+                    var form = $("form", table.$commonsearch);
+                    $("input[name='s_id']", form).addClass("selectpage").data("source", "auth/admin/index2").data("primaryKey", "id").data("params",{"custom[proxy]":"0","custom[sub]":"1"}).data("field", "nickname").data("orderBy", "id asc");
+                    Form.events.cxselect(form);
+                    Form.events.selectpage(form);
+                });
 
-            let clip=new clipboard('.btn-pay_link',{
-                text(a){
-                    let link=$(a).data('link')
-                    return link
-                }
-            })
-            clip.on('success',function (){
-                parent.layer.msg('复制成功')
-            })
 
-            let status = await $.getJSON('mobile_order/status');
-            let statusColor={};
-            let colors=['label-daifukuan','label-info','label-danger','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success'];
-            Object.keys(status).forEach((item,idx)=>{
-                statusColor[item]=colors[idx];
-            });
-            statusColor[50]='label-default';
-            let payType = await $.getJSON('mobile_order/pay_type');
-            let mobileRules = await $.getJSON('mobile/mobile_rules');
-            table.on('load-success.bs.table', function (_, data) {
-                let e=data.extend;
-                $('#orderAmount').html(`收入:${e.total},支付宝:${e.alipay},微信:${e.wechat},抖音:${e.dy},快手:${e.ks},成本:${e.di},利润:${e.profit},退款:${e.refund}`)
-            });
-            $(document).on('click','.btn-click-show-open',function (){
-                if($(this).data('open')!==1){
-                    parent.layer.msg('该用户未上传开卡资料')
-                    return
+                let is_proxy = Config.is_proxy;
+                let is_proxy_operate = false;
+                let is_proxy_operate_eq = false;
+                if(is_proxy==0){
+                    is_proxy_operate = 'LIKE';
+                    is_proxy_operate_eq = '=';
                 }
-                Fast.api.open($.fn.bootstrapTable.defaults.extend.show_open_data_url+'/id/'+$(this).data('id'),'查看资料',{
-                    shade:.3,
-                    shadeClose:false,
+
+                let clip=new clipboard('.btn-pay_link',{
+                    text(a){
+                        let link=$(a).data('link')
+                        return link
+                    }
+                })
+                clip.on('success',function (){
+                    parent.layer.msg('复制成功')
                 })
-            })
-            $(document).on('click','.btn-sub-remark',function (){
-                let id=$(this).data('id')
-                let url=table.data('url-sub-remark')+`/id/${id}`
-                Fast.api.open(url,'备注')
-            })
 
-            let columns=[
-                //{checkbox: true},
-                {field: 'id', title: __('ID'),operate:false,},
-                {field: 'order_no', title: __('订单号'),visible:false,operate: 'like'},
-                {field: 'pay_no', title: __('支付单号'),visible: false,operate: '='},
-                {field: 's_id', title: __('来源渠道'),formatter(_, order) {
-                    let a=[]
-                        a.push(`<div>${order.s_id}</div>`);
-                        a.push(`<div>${order.s_name}</div>`);
-                        return a.join('')
-                    },searchList: subs,width: 100},
-                {field: 'pay_type', title: __('支付方式'),searchList: payType,visible: false, operate: is_proxy_operate},
-                {field: 'no', title: __('手机号'),visible: false,operate: 'LIKE'},
-                {field: 'phone', title: __('收货人手机'),visible: false,operate: 'LIKE'},
-                {field: 'name', title: __('收货人'),visible: false,operate: 'LIKE'},
-                {field: 'id_no', title: __('收货人身份证'),visible: false,operate: "like"},
-                {field: 'pay_mid_wechat', title: __('微信商户号'),visible: false, operate: is_proxy_operate},
-                {field: 'pay_mid_alipay', title: __('支付宝商户号'),visible: false,operate: is_proxy_operate},
-                {field: 'pay_mid_dy', title: __('抖音商户号'),visible: false,operate: is_proxy_operate},
-                {field: 'pay_mid_ks', title: __('快手商户号'),visible: false,operate: is_proxy_operate},
-                {field: 'order_no', title: __('订单信息'),operate: false,formatter(_,order){
-                        let a=[]
-                        a.push(`<div>订单号:<b>${order.order_no}</b></div>`)
-                        if(order.pay_no){
-                            a.push(`<div>支付单号:<b>${order.pay_no}</b></div>`)
-                        }
-                        a.push(`<div>商品信息:<b>${order.no}</b></div>`)
-                        a.push(`<div>归属地:${order.info.mobile.province}/${order.info.mobile.city}</div>`)
-                        if(adminInfo.is_manager){
-                            a.push(`<div>供应商:${order.proxy?order.proxy.nickname:''}</div>`)
-                        }
-                        a.push(`<div>运营商:${order.info?order.info.mobile.network:''}</div>`)
-                        a.push(`<div>卡品牌:${order.brand}</div>`)
-                        if(showAmountDi && is_proxy==0) {
-                            a.push(`<div>底价:${order.amount_di}</div>`)
-                        }
-                        a.push(`<div>预存:${order.amount_charge}</div>`)
-                        if(is_proxy == 0 ) {
-                            a.push(`<div style="font-weight: bold;">售价:${order.info.mobile.is_activity?order.info.mobile.amount_kill:order.info.mobile.amount_base}</div>`)
-                            a.push(`<div>订单价格:${order.amount}</div>`)
-                        }
-                        a.push(`<div>套餐:${order.info?order.info.info.describe:''}</div>`)
-                        a.push(`<div>备注:${order.info?order.info.mobile.remark:''}</div>`)
-                        return `<div style="max-width: 300px;word-wrap: break-word;word-break: break-all;white-space: normal;text-align: left;">${a.join('')}</div>`
-                    },width:300,valign:'top',align:'left'},
-                {field: 'order_no', title: __('收货人'),operate: false,formatter(_,order){
-                        let a=[]
-                        a.push(`<div>收货人:${order.name}</div>`)
-                        a.push(`<div>手机号:${order.phone}<span style="color: red;">(${order.phone_order_count})</span></div>`)
-                        a.push(`<div>地址:${order.address}</div>`)
-                        if(is_proxy == 0 ) {
-                            a.push(`<div>支付方式:${payType[order.pay_type]}</div>`)
-                            a.push(`<div>微信商户号:<span style="color: #00b578;">${order.pay_mid_wechat}</span></div>`)
-                            a.push(`<div>支付宝商户号:<span style="color: #0d6aad;">${order.pay_mid_alipay}</span></div>`)
-                            a.push(`<div>抖音商户号:<span style="color: #0d6aad;">${order.pay_mid_dy}</span></div>`)
-                            a.push(`<div>快手商户号:<span style="color: #0d6aad;">${order.pay_mid_ks}</span></div>`)
-                        }
-                        a.push(`<div>备注:${order.remark}</div>`)
-                        a.push(`<div>快递名称:${order.trans_name}</div>`)
-                        a.push(`<div>快递单号:${order.trans_no}</div>`)
-                        a.push(`<a class="btn btn-link btn-click-show-open" style="color: #00a2ff;" data-id="${order.id}" data-open="${order.open_uploaded}">查看资料</a>`)
-                        return `<div style="max-width: 200px;text-align: left;" class="break-words">${a.join('')}</div>`
-                    },width:200,valign:'top',align:'left'},
-                {field: 'status', title: __('Status'),formatter(a,order){
-                    if(a===30) {
-                        return `<span class="label label-primary">${status[order.status_bak]||''}-${status[a]}</span>`
+                //订单信息复制
+                let order_clip=new clipboard('.btn-order_link',{
+                    text(a){
+                        // let link=$(a).data('link').replace(/<[^>]*>/g, '')
+                        let link=$(a).data('link');
+                        // console.log(JSON.stringify(link));
+                        return link + ''
                     }
-                        return `<span class="label ${statusColor[a]}">${status[a]}</span>`
-                    },searchList:status,operate: is_proxy_operate_eq},
-                {field: 'anchor.name', title:__('主播名称') ,searchList(){return Template('anchor-search',{});},width: 100},
-                {field: 'sub_anchor.mobile_anchor.name', title: __(adminInfo.is_sub?'主播名称':'分站主播'),searchList(){return Template('anchor-sub-search',{});},width: 100,operate: is_proxy_operate,visible:is_proxy_operate},
-                {field: 'rules.rule', title: __('规律'),visible: false,searchList:mobileRules},
-                {field: '', title: __('退款记录'),formatter(_,order){
-                        let a=[]
-                        order.refund_log.forEach(item=>{
-                            a.push(`<div>${item.create_time_format} ${item.pass?'同意':'驳回'} ${item.reason}</div>`)
-                        })
-                        return `<div style="text-align: left;font-size: 10px;" class="break-words">${a.join('')}</div>`
-                    },operate:false,valign:'top',align:'left',width: 200,visible:is_proxy_operate},
-                {field: 'sub_log', title: __(adminInfo.is_manager?'分站备注':'备注'),formatter(_,order){
-                        let a=[]
-                        order.sub_remark.forEach(item=>{
-                            a.push(`<div><span style="color: #0000ff;">${item.create_time_format}</span> <span style="color: #00caff">${item.admin?item.admin.nickname:'-'}</span> ${item.content}</div>`)
-                        })
-                        if(table.data('auth-url-sub-remark')) {
-                            a.push(`<a class="btn btn-info btn-xs btn-sub-remark" data-id="${order.id}">备注</a>`)
-                        }
-                        return `<div style="text-align: left;font-size: 10px;max-width: 200px;" class="break-words">${a.join('')}</div>`
-                    },operate:false,valign:'top',align:'left',width:200},
-                {field: 'operation_log', title: __('客服记录'),formatter(_,order){
-                        let a=[]
-                        order.operation.forEach(item=>{
-                            a.push(`<div><span style="color: #0000ff;">${item.create_time_format}</span> <span style="color: #00caff">${item.admin?item.admin.nickname:'-'}</span> ${item.content}</div>`)
-                        })
-                        return `<div style="text-align: left;font-size: 10px;max-width: 200px;" class="break-words">${a.join('')}</div>`
-                    },operate:false,valign:'top',align:'left',width:200},
-                {field: 'admin.admin_id', title: __('操作员'),formatter(_,order){
-                        let a=[]
-                        order.admin.forEach(item=>{
-                            a.push(`<div>${item.admin.nickname}</div>`)
-                        })
-                        return `<div style="text-align: left;font-size: 10px;">${a.join('')}</div>`
-                    },operate:"=",searchList: admins,valign:'top',align:'left',width: 100},
-                {field: 'pay_link', title: __('付款链接'),formatter(_,order){
-                        if(order.status!==0){
-                            return ''
-                        }
-                        return `<button class="btn btn-success btn-sm btn-pay_link" data-link="${order.pay_link}">点击复制</button>`
-                    },operate:false,width: 150,visible:is_proxy_operate},
-                {field: 'create_time', title: __('Create_time'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
-                //{field: 'update_time', title: __('更新时间'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
-                /*                        {field: 'pay_time', title: __('Pay_time'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
-                                        {field: 'trans_name', title: __('Trans_name')},
-                                        {field: 'trans_no', title: __('Trans_no')},
-                                        {field: 'amount_original', title: __('Amount_original'), operate: 'BETWEEN'},
-                                        {field: 'amount_hd', title: __('Amount_hd'), operate: 'BETWEEN'},
-                                        {field: 'amount_charge', title: __('Amount_charge'), operate: 'BETWEEN'},
-                                        {field: 'amount', title: __('Amount'), operate: 'BETWEEN'},
-                                        {field: 'open_idcard_face_img', title: __('开卡身份证正面照'),formatter: Table.api.formatter.image,events: Table.api.events.image,opera: false},
-                                        {field: 'open_idcard_back_img', title: __('开卡身份证背面照'),formatter: Table.api.formatter.image,events: Table.api.events.image,operate:false},
-                                        {field: 'open_face_img', title: __('开卡人头像'),formatter: Table.api.formatter.image,events: Table.api.events.image,operate:false},
-                                        {field: 'open_name', title: __('开卡人姓名')},
-                                        {field: 'open_id_no', title: __('开卡人身份证号码')},
-                                        {field: 'open_phone', title: __('开卡人手机号')},*/
-                {field: 'trans_no', title: __('Trans_no'),visible: false,operate: "like"},
-                {
-                    field: 'operate',
-                    title: __('Operate'),
-                    table: table,
-                    events: Table.api.events.buttons,
-                    formatter: Table.api.formatter.buttons,
-                    buttons:[
-                        {
-                            name: 'detail',
-                            text: __('设置主播'),
-                            title: __('设置主播'),
-                            classname: 'btn btn-xs btn-info btn-dialog period',
-                            url: table.data('url-set_anchor'),
-                            callback: function (data) {
-                            },
-                            visible: function (row) {
-                                return $('#table').data('auth-set_anchor');
+                })
+                console.log(order_clip,'22222222')
+
+                order_clip.on('success',function (){
+                    console.log(order_clip);
+
+                    parent.layer.msg('复制成功')
+                })
+
+                let status = await $.getJSON('mobile_order/status');
+                let statusColor={};
+                let colors=['label-daifukuan','label-info','label-danger','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success'];
+                Object.keys(status).forEach((item,idx)=>{
+                    statusColor[item]=colors[idx];
+                });
+                statusColor[50]='label-default';
+                let payType = await $.getJSON('mobile_order/pay_type');
+                let mobileRules = await $.getJSON('mobile/mobile_rules');
+                table.on('load-success.bs.table', function (_, data) {
+                    let e=data.extend;
+                    $('#orderAmount').html(`收入:${e.total},支付宝:${e.alipay},微信:${e.wechat},抖音:${e.dy},快手:${e.ks},成本:${e.di},利润:${e.profit},退款:${e.refund}`)
+                });
+                $(document).on('click','.btn-click-show-open',function (){
+                    if($(this).data('open')!==1){
+                        parent.layer.msg('该用户未上传开卡资料')
+                        return
+                    }
+                    Fast.api.open($.fn.bootstrapTable.defaults.extend.show_open_data_url+'/id/'+$(this).data('id'),'查看资料',{
+                        shade:.3,
+                        shadeClose:false,
+                    })
+                })
+                $(document).on('click','.btn-sub-remark',function (){
+                    let id=$(this).data('id')
+                    let url=table.data('url-sub-remark')+`/id/${id}`
+                    Fast.api.open(url,'备注')
+                })
+
+                let columns=[
+                    //{checkbox: true},
+                    {field: 'id', title: __('ID'),operate:false,},
+                    {field: 'order_no', title: __('订单号'),visible:false,operate: 'like'},
+                    {field: 'pay_no', title: __('支付单号'),visible: false,operate: '='},
+                    {field: 's_id', title: __('来源渠道'),formatter(_, order) {
+                            let a=[]
+                            a.push(`<div>${order.s_id}</div>`);
+                            a.push(`<div>${order.s_name}</div>`);
+                            return a.join('')
+                        }},
+                    // {field: 'anchor.name', title:__('主播名称') ,searchList(){return Template('anchor-sub-search',{});},width: 100},
+
+                    {field: 'pay_type', title: __('支付方式'),searchList: payType,visible: false, operate: is_proxy_operate},
+                    {field: 'no', title: __('手机号'),visible: false,operate: 'LIKE'},
+                    {field: 'phone', title: __('收货人手机'),visible: false,operate: 'LIKE'},
+                    {field: 'name', title: __('收货人'),visible: false,operate: 'LIKE'},
+                    {field: 'id_no', title: __('收货人身份证'),visible: false,operate: "like"},
+                    {field: 'pay_mid_wechat', title: __('微信商户号'),visible: false, operate: is_proxy_operate},
+                    {field: 'pay_mid_alipay', title: __('支付宝商户号'),visible: false,operate: is_proxy_operate},
+                    {field: 'pay_mid_dy', title: __('抖音商户号'),visible: false,operate: is_proxy_operate},
+                    {field: 'pay_mid_ks', title: __('快手商户号'),visible: false,operate: is_proxy_operate},
+                    {field: 'order_no', title: __('订单信息'),operate: false,formatter(_,order){
+                            let a=[]
+                            a.push(`<div>订单号:<b class="btn-order_link" data-link="${order.order_no}">${order.order_no}</b></div>`)
+                            if(order.pay_no){
+                                a.push(`<div>支付单号:<b class="btn-order_link" data-link="${order.pay_no}">${order.pay_no}</b></div>`)
                             }
-                        },
-                        {
-                            name: 'detail',
-                            text: __('添加备注'),
-                            title: __('添加备注'),
-                            classname: 'btn btn-xs btn-info btn-dialog period',
-                            url: 'mobile_order/add_operation?a=1',
-                            callback: function (data) {
-                            },
-                            visible: function (row) {
-                                return $('#table').data('add_operation');
+                            a.push(`<div class="btn-order_link" data-link="${order.no}"><b>商品信息:${order.no}</b></div>`)
+                            a.push(`<div>归属地:${order.info.mobile.province}/${order.info.mobile.city}</div>`)
+                            if(adminInfo.is_manager){
+                                a.push(`<div>供应商:${order.proxy?order.proxy.nickname:''}</div>`)
                             }
-                        },
-                        {
-                            name: 'detail',
-                            text: __('编辑'),
-                            title: __('编辑'),
-                            classname: 'btn btn-xs btn-info btn-dialog period',
-                            url: 'mobile_order/edit?a=1',
-                            callback: function (data) {
-                            },
-                            visible: function (row) {
-                                return $('#table').data('add_operation');
+                            a.push(`<div>运营商:${order.info?order.info.mobile.network:''}</div>`)
+                            a.push(`<div>卡品牌:${order.brand}</div>`)
+                            if(showAmountDi && is_proxy==0) {
+                                a.push(`<div class="btn-order_link" data-link="${order}">底价:${order.amount_di}</div>`)
                             }
-                        },
-                        {
-                            name: 'detail',
-                            text: __('退款'),
-                            title: __('退款'),
-                            classname: 'btn btn-xs btn-danger btn-dialog period',
-                            url: 'mobile_order/refund?a=1',
-                            callback: function (data) {
-                            },
-                            visible: function (row) {
-                                return $('#table').data('mobile_order_refund') && row.status>0 && row.status!=90;
+                            a.push(`<div class="btn-order_link" data-link="${order.amount_charge}">预存:${order.amount_charge}</div>`)
+                            if(is_proxy == 0 ) {
+                                a.push(`<div class="btn-order_link" data-link="${order.info.mobile.is_activity?order.info.mobile.amount_kill:order.info.mobile.amount_base}"><b>售价:${order.info.mobile.is_activity?order.info.mobile.amount_kill:order.info.mobile.amount_base}</b></div>`)
+                                a.push(`<div class="btn-order_link" data-link="${order.amount}">订单价格:${order.amount}</div>`)
                             }
-                        },
-                        {
-                            name: 'detail',
-                            text: __('发货'),
-                            title: __('发货'),
-                            classname: 'btn btn-xs btn-info btn-dialog period',
-                            url: 'mobile_order/send?a=1',
-                            callback: function (data) {
-                            },
-                            visible: function (row) {
-                                return $('#table').data('mobile_order_send') && row.status>0;
+                            a.push(`<div class='btn-order_link' data-link="${order.info.info.describe}">套餐:${order.info?order.info.info.describe:''}</div>`)
+                            a.push(`<div>备注:${order.info?order.info.mobile.remark:''}</div>`)
+                            // a.push(`<a class="btn btn-success btn-sm btn-order_link" data-link="${a.join('')}">点击复制</a>`)
+                            return `<div style="max-width: 250px;word-wrap: break-word;word-break: break-all;white-space: normal;text-align: left;">${a.join('')}</div>`
+                        },width:250,valign:'top',align:'left'},
+                    {field: 'order_no', title: __('收货人'),operate: false,formatter(_,order){
+                            let a=[]
+                            a.push(`<div class="btn-order_link" data-link="${order.name}">收货人:${order.name}</div>`)
+                            a.push(`<div class="btn-order_link" data-link="${order.phone}">手机号:${order.phone}<span style="color: red;">(${order.phone_order_count})</span></div>`)
+                            a.push(`<div class="btn-order_link" data-link="${order.address}">地址:${order.address}</div>`)
+                            if(is_proxy == 0 ) {
+                                a.push(`<div>支付方式:${payType[order.pay_type]}</div>`)
+                                a.push(`<div>微信商户号:<span style="color: #00b578;">${order.pay_mid_wechat}</span></div>`)
+                                a.push(`<div>支付宝商户号:<span style="color: #0d6aad;">${order.pay_mid_alipay}</span></div>`)
+                                a.push(`<div>抖音商户号:<span style="color: #0d6aad;">${order.pay_mid_dy}</span></div>`)
+                                a.push(`<div>快手商户号:<span style="color: #0d6aad;">${order.pay_mid_ks}</span></div>`)
+                            }
+                            a.push(`<div>备注:${order.remark}</div>`)
+                            a.push(`<div>快递名称:${order.trans_name}</div>`)
+                            a.push(`<div>快递单号:${order.trans_no}</div>`)
+                            a.push(`<a class="btn btn-link btn-click-show-open" style="color: #00a2ff;" data-id="${order.id}" data-open="${order.open_uploaded}">查看资料</a>`)
+                            return `<div style="max-width: 200px;text-align: left;" class="break-words">${a.join('')}</div>`
+                        },width:200,valign:'top',align:'left'},
+                    {field: 'status', title: __('Status'),formatter(a,order){
+                            if(a===30) {
+                                return `<span class="label label-primary">${status[order.status_bak]||''}-${status[a]}</span>`
+                            }
+                            if(`${status[a]}` == '待付款'){
+                                return `<span class="label ${statusColor[a]}" style="background-color: green">${status[a]}</span>`
+                            }
+                            if(`${status[a]}` == '已完成'){
+                                return `<span class="label ${statusColor[a]}" style="background-color: RGB(243,156,18)">${status[a]}</span>`
+                            }
+                            return `<span class="label ${statusColor[a]}">${status[a]}</span>`
+
+                        },searchList:status,operate: is_proxy_operate_eq},
+                    {field: 'platform_source', title: __('来源'),operate: is_proxy_operate},
+                    {field: 'anchor.name', title:__('主播名称') ,searchList(){return Template('anchor-search',{});},width: 100},
+                    {field: 'sub_anchor.mobile_anchor.name', title: __(adminInfo.is_sub?'主播名称':'分站主播'),searchList(){return Template('anchor-sub-search',{});},width: 100,operate: is_proxy_operate,visible:is_proxy_operate},
+                    {field: 'rules.rule', title: __('规律'),visible: false,searchList:mobileRules},
+                    {field: '', title: __('退款记录'),formatter(_,order){
+                            let a=[]
+                            order.refund_log.forEach(item=>{
+                                a.push(`<div>${item.create_time_format} ${item.pass?'同意':'驳回'} ${item.reason}</div>`)
+                            })
+                            return `<div style="text-align: left;font-size: 10px;" class="break-words">${a.join('')}</div>`
+                        },operate:false,valign:'top',align:'left',width: 200,visible:is_proxy_operate},
+                    {field: 'sub_log', title: __(adminInfo.is_manager?'分站备注':'备注'),formatter(_,order){
+                            let a=[]
+                            order.sub_remark.forEach(item=>{
+                                a.push(`<div><span style="color: #0000ff;">${item.create_time_format}</span> <span style="color: #00caff">${item.admin?item.admin.nickname:'-'}</span> ${item.content}</div>`)
+                            })
+                            if(table.data('auth-url-sub-remark')) {
+                                a.push(`<a class="btn btn-info btn-xs btn-sub-remark" data-id="${order.id}">备注</a>`)
                             }
-                        },
-                        {
-                            name:'detail',
-                            title:'查看物流',
-                            text: __('查看物流'),
-                            classname: 'btn btn-xs btn-danger btn-dialog',
-                            url: 'mobile_order/see_logistics?a=1',
-                            visible:(row)=>{
-                                return $('#table').data('see_logistics') && row.trans_id>0 && row.trans_no
+                            return `<div style="text-align: left;font-size: 10px;max-width: 200px;" class="break-words">${a.join('')}</div>`
+                        },operate:false,valign:'top',align:'left',width:200},
+                    {field: 'operation_log', title: __('客服记录'),formatter(_,order){
+                            let a=[]
+                            order.operation.forEach(item=>{
+                                a.push(`<div><span style="color: #0000ff;">${item.create_time_format}</span> <span style="color: #00caff">${item.admin?item.admin.nickname:'-'}</span> ${item.content}</div>`)
+                            })
+                            return `<div style="text-align: left;font-size: 10px;max-width: 200px;" class="break-words">${a.join('')}</div>`
+                        },operate:false,valign:'top',align:'left',width:200},
+                    {field: 'admin.admin_id', title: __('操作员'),formatter(_,order){
+                            let a=[]
+                            order.admin.forEach(item=>{
+                                a.push(`<div>${item.admin.nickname}</div>`)
+                            })
+                            return `<div style="text-align: left;font-size: 10px;">${a.join('')}</div>`
+                        },operate:"=",searchList: admins,valign:'top',align:'left',width: 100},
+                    {field: 'pay_link', title: __('付款链接'),formatter(_,order){
+                            if(order.status!==0){
+                                return ''
                             }
-                        },
-                        {
-                            name: 'detail',
-                            text: __('上架'),
-                            title: __('上架'),
-                            classname: 'btn btn-xs btn-success btn-dialog period',
-                            url: 'mobile_order/mobile_up?a=1',
-                            callback: function (data) {
-                                if(data && data.say){
-                                    parent.layer.alert(data.say)
+                            return `<button class="btn btn-success btn-sm btn-pay_link" data-link="${order.pay_link}">点击复制</button>`
+                        },operate:false,width: 150,visible:is_proxy_operate},
+                    {field: 'create_time', title: __('Create_time'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
+                    //{field: 'update_time', title: __('更新时间'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
+                    /*                        {field: 'pay_time', title: __('Pay_time'),formatter: Table.api.formatter.datetime,addClass:'datetimerange',operate: 'range'},
+                                            {field: 'trans_name', title: __('Trans_name')},
+                                            {field: 'trans_no', title: __('Trans_no')},
+                                            {field: 'amount_original', title: __('Amount_original'), operate: 'BETWEEN'},
+                                            {field: 'amount_hd', title: __('Amount_hd'), operate: 'BETWEEN'},
+                                            {field: 'amount_charge', title: __('Amount_charge'), operate: 'BETWEEN'},
+                                            {field: 'amount', title: __('Amount'), operate: 'BETWEEN'},
+                                            {field: 'open_idcard_face_img', title: __('开卡身份证正面照'),formatter: Table.api.formatter.image,events: Table.api.events.image,opera: false},
+                                            {field: 'open_idcard_back_img', title: __('开卡身份证背面照'),formatter: Table.api.formatter.image,events: Table.api.events.image,operate:false},
+                                            {field: 'open_face_img', title: __('开卡人头像'),formatter: Table.api.formatter.image,events: Table.api.events.image,operate:false},
+                                            {field: 'open_name', title: __('开卡人姓名')},
+                                            {field: 'open_id_no', title: __('开卡人身份证号码')},
+                                            {field: 'open_phone', title: __('开卡人手机号')},*/
+                    {field: 'trans_no', title: __('Trans_no'),visible: false,operate: "like"},
+                    {
+                        field: 'operate',
+                        title: __('Operate'),
+                        table: table,
+                        events: Table.api.events.buttons,
+                        formatter: Table.api.formatter.buttons,
+                        buttons:[
+                            {
+                                name: 'detail',
+                                text: __('设置主播'),
+                                title: __('设置主播'),
+                                classname: 'btn btn-xs btn-info btn-dialog period',
+                                url: table.data('url-set_anchor'),
+                                callback: function (data) {
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('auth-set_anchor');
                                 }
                             },
-                            visible: function (row) {
-                                return $('#table').data('auth-mobile_up') && [90].indexOf(row.status)>-1;
+                            {
+                                name: 'detail',
+                                text: __('添加备注'),
+                                title: __('添加备注'),
+                                classname: 'btn btn-xs btn-info btn-dialog period',
+                                url: 'mobile_order/add_operation?a=1',
+                                callback: function (data) {
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('add_operation');
+                                }
                             },
-                            disable(row){
-                                return row.mobile_can_up
-                            }
-                        },
-                        {
-                            name: 'detail',
-                            text: __('抖音结算'),
-                            title: __('抖音结算'),
-                            classname: 'btn btn-xs btn-success btn-ajax',
-                            url: 'mobile_order/dy_settle',
-                            confirm:'确认结算吗?',
-                            callback: function (data) {
+                            {
+                                name: 'detail',
+                                text: __('编辑'),
+                                title: __('编辑'),
+                                classname: 'btn btn-xs btn-info btn-dialog period',
+                                url: 'mobile_order/edit?a=1',
+                                callback: function (data) {
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('add_operation');
+                                }
                             },
-                            visible: function (row) {
-                                return $('#table').data('auth-dy_settle') && row.pay_type===4 && row.pay_time>0 && row.payment && row.payment.settle_status===0;
+                            {
+                                name: 'detail',
+                                text: __('退款'),
+                                title: __('退款'),
+                                classname: 'btn btn-xs btn-danger btn-dialog period',
+                                url: 'mobile_order/refund?a=1',
+                                callback: function (data) {
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('mobile_order_refund') && row.status>0 && row.status!=90;
+                                }
                             },
-                            disable(row){
-                            }
-                        },
-                    ]
+                            {
+                                name: 'detail',
+                                text: __('发货'),
+                                title: __('发货'),
+                                classname: 'btn btn-xs btn-info btn-dialog period',
+                                url: 'mobile_order/send?a=1',
+                                callback: function (data) {
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('mobile_order_send') && row.status>0;
+                                }
+                            },
+                            {
+                                name:'detail',
+                                title:'查看物流',
+                                text: __('查看物流'),
+                                classname: 'btn btn-xs btn-danger btn-dialog',
+                                url: 'mobile_order/see_logistics?a=1',
+                                visible:(row)=>{
+                                    return $('#table').data('see_logistics') && row.trans_id>0 && row.trans_no
+                                }
+                            },
+                            {
+                                name: 'detail',
+                                text: __('上架'),
+                                title: __('上架'),
+                                classname: 'btn btn-xs btn-success btn-dialog period',
+                                url: 'mobile_order/mobile_up?a=1',
+                                callback: function (data) {
+                                    if(data && data.say){
+                                        parent.layer.alert(data.say)
+                                    }
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('auth-mobile_up') && [90].indexOf(row.status)>-1;
+                                },
+                                disable(row){
+                                    return row.mobile_can_up
+                                }
+                            },
+                            {
+                                name: 'detail',
+                                text: __('抖音结算'),
+                                title: __('抖音结算'),
+                                classname: 'btn btn-xs btn-success btn-ajax',
+                                url: 'mobile_order/dy_settle',
+                                confirm:'确认结算吗?',
+                                callback: function (data) {
+                                },
+                                visible: function (row) {
+                                    return $('#table').data('auth-dy_settle') && row.pay_type===4 && row.pay_time>0 && row.payment && row.payment.settle_status===0;
+                                },
+                                disable(row){
+                                }
+                            },
+                        ]
+                    }
+                ]
+                if(!adminInfo.is_manager){
+                    Table.api.removeColumn('operation_log',columns)
+                    Table.api.removeColumn('anchor.name',columns)
+                    Table.api.removeColumn('s_id',columns)
+                    Table.api.removeColumn('admin.admin_id',columns)
                 }
-            ]
-            if(!adminInfo.is_manager){
-                Table.api.removeColumn('operation_log',columns)
-                Table.api.removeColumn('anchor.name',columns)
-                Table.api.removeColumn('s_id',columns)
-                Table.api.removeColumn('admin.admin_id',columns)
-            }
 
 
-            // 初始化表格
-            table.bootstrapTable({
-                url: $.fn.bootstrapTable.defaults.extend.index_url,
-                pk: 'id',
-                sortName: 'id',
-                search:false,
-                searchFormVisible:true,
-                columns: [
-                    columns
-                ],
-                fixedColumns:true,
-                fixedRightNumber:1,
-                onLoadSuccess(a){
-                    $('.btn-export').attr('href',a.link).show()
-                    // 角标
-                    let arr1 = [];let status_all=0;
-                    a.status_list.forEach(function(item, index) {
-                        $(".nav li .nav_id_"+item.status).text(item.total);
-                        arr1.push(item.status);
-                        status_all = status_all+item.total;
-                    });
-                    // 全部
-                    $(".nav li .nav_id_all").text(status_all);
-                    // 无数据的置0
-                    let arr2 = [0,10,15,17,20,25,30,50,60,70,80,90];
-                    let diff=arr2.filter(item=>arr1.indexOf(item)==-1);
-                    diff.forEach(function (i,k){
-                        $(".nav li .nav_id_"+i).text(0);
-                    });
-                    $(".nav li .nav_id_10").text(a.status_10_count);
+                // 初始化表格
+                table.bootstrapTable({
+                    url: $.fn.bootstrapTable.defaults.extend.index_url,
+                    pk: 'id',
+                    sortName: 'id',
+                    search:false,
+                    searchFormVisible:true,
+                    columns: [
+                        columns
+                    ],
+                    fixedColumns:true,
+                    fixedRightNumber:1,
+                    onLoadSuccess(a){
+                        $('.btn-export').attr('href',a.link).show()
+                        // 角标
+                        let arr1 = [];let status_all=0;
+                        a.status_list.forEach(function(item, index) {
+                            $(".nav li .nav_id_"+item.status).text(item.total);
+                            arr1.push(item.status);
+                            status_all = status_all+item.total;
+                        });
+                        // 全部
+                        $(".nav li .nav_id_all").text(status_all);
+                        // 无数据的置0
+                        let arr2 = [0,10,15,17,20,25,30,50,60,70,80,90];
+                        let diff=arr2.filter(item=>arr1.indexOf(item)==-1);
+                        diff.forEach(function (i,k){
+                            $(".nav li .nav_id_"+i).text(0);
+                        });
+                        $(".nav li .nav_id_10").text(a.status_10_count);
 
-                    /*table.find('thead').css('position','fixed').css('background','white').css('top','370px')
-                    table.css('margin-top',41)
-                    table.find('tbody>tr:first-child>td').each((a,b)=>{
-                        table.find('thead tr th').eq(a).css('width',b.offsetWidth).css('max-width',b.offsetWidth)
-                    })*/
-                }
-            });
+                        /*table.find('thead').css('position','fixed').css('background','white').css('top','370px')
+                        table.css('margin-top',41)
+                        table.find('tbody>tr:first-child>td').each((a,b)=>{
+                            table.find('thead tr th').eq(a).css('width',b.offsetWidth).css('max-width',b.offsetWidth)
+                        })*/
+                    }
+                });
+
+                // 为表格绑定事件
+                Table.api.bindevent(table);
 
-            // 为表格绑定事件
-            Table.api.bindevent(table);
+                /* let innerHeight=window.innerHeight
+                 $('.fixed-table-container').css('height',`${innerHeight-420}px`)
+                 window.addEventListener('resize',function (){
+                     let innerHeight=window.innerHeight
+                     $('.fixed-table-container').css('height',`${innerHeight-420}px`)
+                 })*/
 
-           /* let innerHeight=window.innerHeight
-            $('.fixed-table-container').css('height',`${innerHeight-420}px`)
-            window.addEventListener('resize',function (){
-                let innerHeight=window.innerHeight
-                $('.fixed-table-container').css('height',`${innerHeight-420}px`)
-            })*/
-        },
-        add: function () {
-            Controller.api.bindevent();
-        },
-        edit: function () {
-            Controller.api.bindevent();
-            $(document).on('input propertychange','#c-trans_no',function (){
-                let no=$(this).val()
-                if(!no){
-                    return
+            },
+            add: function () {
+                Controller.api.bindevent();
+            },
+            edit: function () {
+                Controller.api.bindevent();
+                $(document).on('input propertychange','#c-trans_no',function (){
+                    let no=$(this).val()
+                    if(!no){
+                        return
+                    }
+                    Form.api.guessLogistics(no,'#c-trans_id')
+                })
+            },
+            add_operation(){
+                Controller.api.bindevent();
+                $('#c-no').focus()
+            },
+            sub_remark(){
+                Controller.api.bindevent();
+                $('#c-no').focus()
+            },
+            set_anchor(){
+                Controller.api.bindevent();
+            },
+            refund(){
+                Controller.api.bindevent();
+            },
+            mobile_up(){
+                Controller.api.bindevent()
+                if(!row){
+                    Fast.api.close({say:'此号码已被删除,无法上架'})
+                }else if(row.status===0){
+                    //Fast.api.close({say:'此号码已是上架状态'})
                 }
-                Form.api.guessLogistics(no,'#c-trans_id')
-            })
-        },
-        add_operation(){
-            Controller.api.bindevent();
-            $('#c-no').focus()
-        },
-        sub_remark(){
-            Controller.api.bindevent();
-            $('#c-no').focus()
-        },
-        set_anchor(){
-            Controller.api.bindevent();
-        },
-        refund(){
-            Controller.api.bindevent();
-        },
-        mobile_up(){
-            Controller.api.bindevent()
-            if(!row){
-                Fast.api.close({say:'此号码已被删除,无法上架'})
-            }else if(row.status===0){
-                //Fast.api.close({say:'此号码已是上架状态'})
-            }
-        },
-        send(){
-            Controller.api.bindevent();
-            $(document).on('input propertychange','#c-trans_no',function (){
-                let no=$(this).val()
-                if(!no){
-                    return
+            },
+            send(){
+                Controller.api.bindevent();
+                $(document).on('input propertychange','#c-trans_no',function (){
+                    let no=$(this).val()
+                    if(!no){
+                        return
+                    }
+                    Form.api.guessLogistics(no,'#c-trans_id')
+                })
+            },
+            show_open_data(){
+                Controller.api.bindevent()
+            },
+            api: {
+                bindevent: function () {
+                    Form.api.bindevent($("form[role=form]"));
                 }
-                Form.api.guessLogistics(no,'#c-trans_id')
-            })
-        },
-        show_open_data(){
-            Controller.api.bindevent()
-        },
-        api: {
-            bindevent: function () {
-                Form.api.bindevent($("form[role=form]"));
-            }
-        },
-        refund_log(){
-            Table.api.init();
-            var table = $("#table");
-            let columns=[
-                //{field:'id',title:'ID',operate:false},
-                {field:'od.mobile_id',title:'商品ID',operate:'='},
-                {field:'od.s_id',title:'代理商ID',operate:'='},
-                {field:'od.order_no',title:'订单号',operate:'='},
-                {field:'od.no',title:'手机号',operate:'like'},
-                {field:'pass',title:'审核状态',searchList:{1:'通过',0:'驳回'},formatter: Table.api.formatter.label},
-                {field:'reason',title:'备注',formatter: Table.api.formatter.content,width:200},
-                {field:'od.amount',title:'订单金额',operate:'between'},
-                {field:'amount_backend',title:'退款金额',operate:'between'},
-                {field:'create_time',title:'创建时间',operate:'range',addClass:'datetimerange',formatter:Table.api.formatter.datetime},
-                {field:'admin.nickname',title:' 操作员',operate:'like'},
-            ];
-            if(!admin.is_manager){
-                Table.api.removeColumn('od.s_id',columns)
-            }
-            table.bootstrapTable({
-                url: 'mobile_order/refund_log',
-                pk: 'id',
-                sortName: 'id',
-                search:false,
-                searchFormVisible:true,
-                columns: columns,
-                onLoadSuccess(a){
+            },
+            refund_log(){
+                Table.api.init();
+                var table = $("#table");
+                let columns=[
+                    //{field:'id',title:'ID',operate:false},
+                    {field:'od.mobile_id',title:'商品ID',operate:'='},
+                    {field:'od.s_id',title:'代理商ID',operate:'='},
+                    {field:'od.order_no',title:'订单号',operate:'='},
+                    {field:'od.no',title:'手机号',operate:'like'},
+                    {field:'pass',title:'审核状态',searchList:{1:'通过',0:'驳回'},formatter: Table.api.formatter.label},
+                    {field:'reason',title:'备注',formatter: Table.api.formatter.content,width:200},
+                    {field:'od.amount',title:'订单金额',operate:'between'},
+                    {field:'amount_backend',title:'退款金额',operate:'between'},
+                    {field:'create_time',title:'创建时间',operate:'range',addClass:'datetimerange',formatter:Table.api.formatter.datetime},
+                    {field:'admin.nickname',title:' 操作员',operate:'like'},
+                ];
+                if(!admin.is_manager){
+                    Table.api.removeColumn('od.s_id',columns)
                 }
-            });
-            Table.api.bindevent(table);
-        }
-    };
-    return Controller;
-});
+                table.bootstrapTable({
+                    url: 'mobile_order/refund_log',
+                    pk: 'id',
+                    sortName: 'id',
+                    search:false,
+                    searchFormVisible:true,
+                    columns: columns,
+                    onLoadSuccess(a){
+                    }
+                });
+                Table.api.bindevent(table);
+            }
+        };
+        return Controller;
+    });

+ 19 - 12
public/assets/js/backend/mobile_order_flow.js

@@ -18,6 +18,13 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
 
             var table = $("#table");
 
+            table.on('post-common-search.bs.table', function (event, table) {
+                var form = $("form", table.$commonsearch);
+                $("input[name='s_id']", form).addClass("selectpage").data("source", "auth/admin/index2").data("primaryKey", "id").data("params",{"custom[proxy]":"0","custom[sub]":"1"}).data("field", "nickname").data("orderBy", "id asc");
+                Form.events.cxselect(form);
+                Form.events.selectpage(form);
+            });
+
             let status = await $.getJSON('mobile_order_flow/status')
             let statusColor={};
             let colors=['label-daifukuan','label-info','label-danger','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success','label-default','label-danger','label-info','label-warning','label-primary','label-success'];
@@ -58,7 +65,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         a.push(`<div>${order.s_id}</div>`);
                         a.push(`<div>${order.s_name}</div>`);
                         return a.join('')
-                    },searchList: subs,width: 100},
+                    }},
                 {field: 'pay_type', title: __('支付方式'),searchList: payType,visible: false},
                 {field: 'pay_mid_wechat', title: __('微信商户号'),visible: false,operate: 'LIKE'},
                 {field: 'pay_mid_alipay', title: __('支付宝商户号'),visible: false,operate: 'LIKE'},
@@ -135,15 +142,15 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         return `<span class="label ${statusColor[a]}">${status[a]}</span>`
                     },searchList:status},
                 {field: 'gantanhao_status', title: __('运营商结果'),formatter(a,order){
-                    var str = '';
-                    if(order.gantanhao_data_notify && order.status == '110' && order.gantanhao_data_notify.reason != undefined){
-                        str = `<div style="width: 200px;" class="break-words">${order.gantanhao_data_notify.reason}</div>`;
-                    }
-                    if(order.gantanhao_data_notify && order.gantanhao_data_notify.is_activated == 1){
-                        str += `<div style="width: 200px;" class="break-words">已激活</div>`;
-                    }
-                    return str;
-                },searchable:false},
+                        var str = '';
+                        if(order.gantanhao_data_notify && order.status == '110' && order.gantanhao_data_notify.reason != undefined){
+                            str = `<div style="width: 200px;" class="break-words">${order.gantanhao_data_notify.reason}</div>`;
+                        }
+                        if(order.gantanhao_data_notify && order.gantanhao_data_notify.is_activated == 1){
+                            str += `<div style="width: 200px;" class="break-words">已激活</div>`;
+                        }
+                        return str;
+                    },searchable:false},
                 {field: 'anchor.name', title:__('主播名称') ,searchList(){return Template('anchor-search',{});},width:100,formatter:Table.api.formatter.width},
                 {field: 'sub_anchor.mobile_anchor.name', title: __(adminInfo.is_sub?'主播名称':'分站主播'),searchList(){return Template('anchor-sub-search',{});},width:100,formatter:Table.api.formatter.width},
                 {field: 'sub_log', title: __(adminInfo.is_manager?'分站备注':'备注'),formatter(_,order){
@@ -303,7 +310,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                 ],
                 onLoadSuccess(a){
                     $('.btn-export').attr('href',a.link).show();
-                    
+
                     let arr1 = [];let status_all=0;
                     a.status_list.forEach(function(item, index) {
                         $(".nav li .nav_id_"+item.status).text(item.total);
@@ -318,7 +325,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                     diff.forEach(function (i,k){
                         $(".nav li .nav_id_"+i).text(0);
                     });
-                    
+
                     /*table.find('thead').css('position','fixed').css('background','white').css('top','365px')
                     table.css('margin-top',41)
                     table.find('tbody>tr:first-child>td').each((a,b)=>{

+ 5 - 0
public/nginx.htaccess

@@ -0,0 +1,5 @@
+location / {
+	if (!-e $request_filename){
+		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
+	}
+}

+ 2 - 2
thinkphp/library/think/cache/driver/Redis.php

@@ -23,9 +23,9 @@ use think\cache\Driver;
 class Redis extends Driver
 {
     protected $options = [
-        'host'       => '127.0.0.1',
+        'host'       => '120.79.95.107',
         'port'       => 6379,
-        'password'   => '',
+        'password'   => 'lianghao',
         'select'     => 0,
         'timeout'    => 0,
         'expire'     => 0,