ShopOrderService.php 874 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace app\data\controller;
  3. use think\admin\Controller;
  4. /**
  5. * 售后申请管理
  6. * Class ShopOrderService
  7. * @package app\data\controller
  8. */
  9. class ShopOrderService extends Controller
  10. {
  11. /**
  12. * 绑定数据表
  13. * @var string
  14. */
  15. private $table = 'ShopOrderService';
  16. /**
  17. * 售后申请管理
  18. * @auth true
  19. * @menu true
  20. * @throws \think\db\exception\DataNotFoundException
  21. * @throws \think\db\exception\DbException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. */
  24. public function index()
  25. {
  26. $this->title = '售后申请管理';
  27. $this->type = input('type', 'all');
  28. $query = $this->_query($this->table);
  29. if (is_numeric($this->type = input('type', 'all'))) {
  30. $query->equal('status#type');
  31. }
  32. $query->order('id desc')->page();
  33. }
  34. }