DeliveryOrder.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\controller\admin\delivery;
  12. use app\common\repositories\delivery\DeliveryOrderRepository;
  13. use crmeb\basic\BaseController;
  14. use think\App;
  15. class DeliveryOrder extends BaseController
  16. {
  17. protected $repository;
  18. public function __construct(App $app, DeliveryOrderRepository $repository)
  19. {
  20. parent::__construct($app);
  21. $this->repository = $repository;
  22. }
  23. public function lst()
  24. {
  25. [$page, $limit] = $this->getPage();
  26. $where = $this->request->params(['keyword','station_name','status','mer_id','date','order_sn','station_type']);
  27. $data = $this->repository->sysList($where, $page, $limit);
  28. return app('json')->success($data);
  29. }
  30. public function detail($id)
  31. {
  32. $data = $this->repository->detail($id, null);
  33. return app('json')->success($data);
  34. }
  35. public function title()
  36. {
  37. $data = $this->repository->getTitle();
  38. return app('json')->success($data);
  39. }
  40. }