BillHeader.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. namespace app\synth\controller;
  3. use library\Controller;
  4. use think\Db;
  5. class BillHeader extends Controller
  6. {
  7. protected $table = 'BillHeader';
  8. /**
  9. * 列表
  10. * @auth true
  11. * @menu true
  12. * @throws \think\Exception
  13. * @throws \think\db\exception\DataNotFoundException
  14. * @throws \think\db\exception\ModelNotFoundException
  15. * @throws \think\exception\DbException
  16. * @throws \think\exception\PDOException
  17. */
  18. public function index()
  19. {
  20. $this->title = '列表';
  21. $query = $this->_query($this->table);
  22. $this->type_arr = \app\common\model\BillType::getType();
  23. $where= [];
  24. $where[] = ['i.is_deleted','=',0];
  25. if($this->request->request('user_name')) $where[]= ['m.name','like','%'.$this->request->request('user_name').'%'];
  26. if($this->request->request('title')) $where[]= ['i.title','like','%'.$this->request->request('title').'%'];
  27. if($this->request->request('type')) $where[]= ['i.type','=',$this->request->request('type')];
  28. $query->alias('i')->field('i.* ,b.title type_name,m.headimg,m.name as user_name,m.phone')
  29. ->join('store_member m',' m.id = i.user_id ','LEFT')
  30. ->join('bill_type b',' b.id = i.type ','LEFT');
  31. if(!empty($where)) $query->where($where);
  32. $query ->order('i.id desc')->page();
  33. }
  34. /**
  35. * 删除
  36. * @auth true
  37. * @menu true
  38. * @param array $data
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @throws \think\exception\DbException
  42. */
  43. public function remove()
  44. {
  45. $this->_save($this->table, ['is_deleted' => '1']);
  46. }
  47. /**
  48. * 编辑
  49. * @auth true
  50. * @menu true
  51. * @throws \think\Exception
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @throws \think\exception\DbException
  55. * @throws \think\exception\PDOException
  56. */
  57. public function edit()
  58. {
  59. $this->title = '编辑';
  60. $this->_form($this->table, 'form');
  61. }
  62. }