123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- namespace app\synth\controller;
- use app\common\model\User;
- use library\Controller;
- use think\Db;
- /**
- * 请假列表
- * Class Maintain
- * @package app\synth\controller
- */
- class Maintain extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'MaintainInfo';
- /**
- * 列表
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '列表管理';
- $this->status_arr = [0=>'全部','1'=>'审批中',2=>'审批通过',3=>'审批拒绝',9=>'已取消'];
- $sel_where = [];
- $time = explode(' - ',input('create_at'));
- if(input('create_at')){
- $sel_where[] = ['a.create_at','between time',$time];
- }
- if($type = input('type')) $sel_where[] = ['a.type','=',$type];
- if($status = input('status')) $sel_where[] = ['a.status','=',$status];
- if($name = input('name')) $sel_where[] = ['u.name','like','%'.$name.'%'];
- $query = $this->_query($this->table)
- ->field('a.*,u.name,u.headimg')
- ->where($sel_where)
- ->alias('a')
- ->leftJoin('store_member u','u.id = a.user_id')
- ->where('a.is_deleted',0)
- ->order('a.id desc')
- ->page();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- foreach ($data as $k=>&$v){
- }
- }
- /**
- * 删除
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => '1']);
- }
- /**
- *
- * 编辑
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function edit()
- {
- $this->title = '编辑';
- $this->_form($this->table, 'form');
- }
- /**
- *
- * 数据处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _form_filter(&$data)
- {
- if($this->request->isGet() && $this->request->action() == 'edit')
- {
- $data['user_name'] = User::where('id',$data['user_id'])->value('name');
- }
- }
- /**
- *
- * 审批记录
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function approve()
- {
- $id = input('id');
- $list = $this->_query('MaintainApprove')
- ->alias('r')
- ->field('r.*,u.name,u.phone,u.headimg')
- ->leftJoin('store_member u','u.id = r.approve_user')
- ->where('r.info_id',$id)
- ->order('r.id asc')->page(false);
- $this->assign('list',$list);
- $this->fetch();
- }
- }
|