LevelOrder.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. namespace app\order\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 会员订单管理
  7. * Class LevelOrder
  8. * @package app\order\controller
  9. */
  10. class LevelOrder extends Controller
  11. {
  12. protected $table = 'LevelOrder';
  13. /**
  14. * 订单列表
  15. * @auth true
  16. * @menu true
  17. * @throws \think\Exception
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @throws \think\exception\DbException
  21. * @throws \think\exception\PDOExceptio
  22. */
  23. public function index()
  24. {
  25. $this->title = '订单管理';
  26. $query = $this->_query($this->table);
  27. $where = [];
  28. $where[] = ['o.is_deleted','=',0];
  29. $where[] = ['o.cancel_state','=',0];
  30. $where[] = ['o.pay_state','=',1];
  31. if($this->request->request('tel'))$where[]= ['u.phone','like','%'.$this->request->request('tel').'%'];
  32. if($this->request->request('user_name'))$where[]= ['u.name','like','%'.$this->request->request('user_name').'%'];
  33. if($this->request->request('order_no')) $where[]= ['o.order_no','like','%'.$this->request->request('order_no').'%'];
  34. $query->alias('o')
  35. ->field('o.* , u.name u_name ,u.phone u_phone,l.name level_name')
  36. ->join('store_member u',' o.user_id = u.id ','LEFT')
  37. ->leftJoin('user_level l',' o.level_id = l.id ');
  38. $arr = ['is_new' => 0];
  39. \app\common\model\LevelOrder::alias('f')->where('is_new',1)->update($arr);
  40. if(!empty($where)) $query->where($where);
  41. $query ->order('o.id desc')->page();
  42. }
  43. /**
  44. * 表单数据处理
  45. * @auth true
  46. * @menu true
  47. * @param array $data
  48. */
  49. protected function _form_filter(&$data)
  50. {
  51. }
  52. /**
  53. * 删除
  54. * @auth true
  55. * @menu true
  56. * @throws \think\Exception
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. * @throws \think\exception\PDOException
  61. */
  62. public function remove()
  63. {
  64. $this->_save($this->table, ['is_deleted' =>1]);
  65. }
  66. }