123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace app\admin\controller\patient;
- use app\common\controller\Backend;
- /**
- * 患者信息管理
- *
- * @icon fa fa-circle-o
- */
- class PatientInfo extends Backend
- {
-
- /**
- * PatientInfoModel模型对象
- * @var \app\admin\model\patient\PatientInfoModel
- */
- protected $model = null;
- /**
- * 快速搜索时执行查找的字段
- */
- protected $searchFields = ['patient_infos.name'];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\patient\PatientInfoModel;
- }
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams($this->searchFields, true);
- $join = [
- ['institution i','p.institution_id = i.id','LEFT']
- ];
- $field = ['p.*','i.name as institution_name'];
- // 过滤机构
- $childInsIds = $this->auth->getMyInsId();
- if($childInsIds == false){
- $more = false;
- } else {
- $more = ['p.institution_id' => ['in', $childInsIds]];
- }
- $total = $this->model->alias('p')
- ->join($join)
- ->where($more)
- ->where($where)
- ->order($sort, $order)
- ->count();
- $list = $this->model->alias('p')
- ->join($join)
- ->where($more)
- ->where($where)
- ->order($sort, $order)
- ->limit($offset, $limit)
- ->field($field)
- ->select();
- $list = collection($list)->toArray();
- $result = array("total" => $total, "rows" => $list);
- return json($result);
- }
- return $this->view->fetch();
- }
- }
|