Service.php 839 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. $param = $this->request->only(['page' => 1, 'size' => 10,'status'=>''], 'post');
  23. return ServiceLogic::orderList($param);
  24. }
  25. //服务订单详情
  26. public function orderInfo(){
  27. $id = $this->request->post('id/d', 0);
  28. return ServiceLogic::orderInfo($id);
  29. }
  30. }