Usermobile.php 8.9 KB
<?php

namespace app\admin\controller\agent;

use app\common\controller\Backend;
use think\Db;

/**
 * 一网通办人员管理
 *
 * @icon fa fa-circle-o
 */
class Usermobile extends Backend
{

    /**
     * Usermobile模型对象
     * @var \app\admin\model\agent\Usermobile
     */
    protected $model = null;

    public function _initialize()
    {
        parent::_initialize();
        $this->model = new \app\admin\model\agent\Usermobile;
        $this->view->assign("statusList", $this->model->getStatusList());
    }

    public function import()
    {
        parent::import();
    }

    /**
     * 查看
     */
    public function index()
    {
        //当前是否为关联查询
        $this->relationSearch = true;
        //设置过滤方法
        $this->request->filter(['strip_tags', 'trim']);
        if ($this->request->isAjax()) {

            //如果发送的来源是Selectpage,则转发到Selectpage
            if ($this->request->request('keyField')) {
                return $this->selectpage();
            }
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
            $a = [];
            $b = (json_decode((request()->param())['filter'],true))['status'];
            if($b === '1'){
                
            }else{
                $a['user_id'] = ['<>',''];
            }
         
            $list = $this->model
                ->where($where)
                ->where($a)
                ->order('id', 'desc')
                ->paginate($limit);

            $rows = $list->items();
            foreach ($rows as $kk => $vv) {
                //关联经纪人信息
                $agent = Db::name('agent_users')
                    ->where(['jjr_mobile' => $vv['catname']])
                    ->find();
                $rows[$kk]['agent_user'] = '-';
                $rows[$kk]['userno'] = '-';
                if (empty($agent)) {
                    $rows[$kk]['agent_stu'] = '未注册';
                }
                if ($agent['jjr_agent_stu'] == '0') {
                    $rows[$kk]['agent_user'] = $agent['jjr_name'];
                    $rows[$kk]['userno'] = $agent['userno'];
                    $rows[$kk]['agent_stu'] = '未审核';
                }
                if ($agent['jjr_agent_stu'] == '1') {
                    $rows[$kk]['agent_user'] = $agent['jjr_name'];
                    $rows[$kk]['userno'] = $agent['userno'];
                    $rows[$kk]['agent_stu'] = '审核通过';
                }
                if ($agent['jjr_agent_stu'] == '2') {
                    $rows[$kk]['agent_user'] = $agent['jjr_name'];
                    $rows[$kk]['userno'] = $agent['userno'];
                    $rows[$kk]['agent_stu'] = '不通过';
                }
                if ($agent['jjr_agent_stu'] == '3') {
                    $rows[$kk]['agent_user'] = $agent['jjr_name'];
                    $rows[$kk]['userno'] = $agent['userno'];
                    $rows[$kk]['agent_stu'] = '离职';
                }
                if ($agent['jjr_agent_stu'] == '4') {
                    $rows[$kk]['agent_user'] = $agent['jjr_name'];
                    $rows[$kk]['userno'] = $agent['userno'];
                    $rows[$kk]['agent_stu'] = '非正常离职';
                }
            }

            $result = array("total" => $list->total(), "rows" => $rows);

            return json($result);
        }
        return $this->view->fetch();
    }

    /**
     * 添加
     */
    public function add()
    {
        if ($this->request->isPost()) {
            $params = $this->request->post("row/a");
            if ($params) {
                $params = $this->preExcludeFields($params);
                //判断手机号码格式
                if (!preg_match('/^1[3456789]\d{9}$/ims', $params['catname'])) {
                    $this->error('手机号码格式不正确');
                }
                //判断手机号码是否重复
                $cksrs = Db::name('agent_user_mobile')
                    ->where(['catname' => $params['catname']])
                    ->find();
                if (!empty($cksrs)) {
                    $this->error('手机号码已存在');
                }

                if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
                    $params[$this->dataLimitField] = $this->auth->id;
                }
                $result = false;
                //关联经纪人信息
                $agent = Db::name('agent_users')
                    ->where(['jjr_mobile' => $params['catname']])
                    ->find();
                $params['user_id'] = $agent['user_id'];
                $params['jjr_name'] = $agent['jjr_name'];
                $params['userno'] = $agent['userno'];
                Db::startTrans();
                try {
                    //是否采用模型验证
                    if ($this->modelValidate) {
                        $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
                        $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
                        $this->model->validateFailException(true)->validate($validate);
                    }
                    $result = $this->model->allowField(true)->save($params);


                    Db::commit();
                } catch (ValidateException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (PDOException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (Exception $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                }
                if ($result !== false) {

                    $this->success();
                } else {
                    $this->error(__('No rows were inserted'));
                }
            }
            $this->error(__('Parameter %s can not be empty', ''));
        }
        return $this->view->fetch();
    }

    /**
     * 编辑
     */
    public function edit($ids = null)
    {
        $row = $this->model->get($ids);
        if (!$row) {
            $this->error(__('No Results were found'));
        }
        $adminIds = $this->getDataLimitAdminIds();
        if (is_array($adminIds)) {
            if (!in_array($row[$this->dataLimitField], $adminIds)) {
                $this->error(__('You have no permission'));
            }
        }
        if ($this->request->isPost()) {
            $params = $this->request->post("row/a");
            if ($params) {
                $params = $this->preExcludeFields($params);
                //判断手机号码格式
                if (!preg_match('/^1[3456789]\d{9}$/ims', $params['catname'])) {
                    $this->error('手机号码格式不正确');
                }
                //判断手机号码是否重复
                $wh['id'] = ['neq', $row['id']];
                $cksrs = Db::name('agent_user_mobile')
                    ->where(['catname' => $params['catname']])
                    ->where($wh)
                    ->find();
                if (!empty($cksrs)) {
                    $this->error('手机号码已存在');
                }
                $result = false;
                //关联经纪人信息
                $agent = Db::name('agent_users')
                    ->where(['jjr_mobile' => $params['catname']])
                    ->find();
                $params['user_id'] = $agent['user_id'];
                $params['jjr_name'] = $agent['jjr_name'];
                $params['userno'] = $agent['userno'];
                Db::startTrans();
                try {
                    //是否采用模型验证
                    if ($this->modelValidate) {
                        $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
                        $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
                        $row->validateFailException(true)->validate($validate);
                    }

                    $result = $row->allowField(true)->save($params);
                    Db::commit();
                } catch (ValidateException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (PDOException $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                } catch (Exception $e) {
                    Db::rollback();
                    $this->error($e->getMessage());
                }
                if ($result !== false) {
                    $this->success();
                } else {
                    $this->error(__('No rows were updated'));
                }
            }
            $this->error(__('Parameter %s can not be empty', ''));
        }
        $this->view->assign("row", $row);
        return $this->view->fetch();
    }

}