Service.php 847 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace app\mobile\controller;
  3. use app\BaseController;
  4. use app\mobile\logic\ServiceLogic;
  5. //服务
  6. class Service extends BaseController
  7. {
  8. //服务列表
  9. public function list()
  10. {
  11. $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
  12. return ServiceLogic::list($param);
  13. }
  14. //服务详情
  15. public function read()
  16. {
  17. $id = $this->request->post('id/d', 0);
  18. return ServiceLogic::read($id);
  19. }
  20. //服务订单列表
  21. public function orderList()
  22. {
  23. $param = $this->request->only(['page' => 1, 'size' => 10, 'status' => ''], 'post');
  24. return ServiceLogic::orderList($param);
  25. }
  26. //服务订单详情
  27. public function orderInfo()
  28. {
  29. $id = $this->request->post('id/d', 0);
  30. return ServiceLogic::orderInfo($id);
  31. }
  32. }