123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace app\mobile\controller;
- use app\BaseController;
- use app\mobile\logic\ServiceLogic;
- class Service extends BaseController
- {
-
- public function list()
- {
- $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
- return ServiceLogic::list($param);
- }
-
-
- public function read()
- {
- $id = $this->request->post('id/d', 0);
- return ServiceLogic::read($id);
- }
-
- public function orderList(){
- $param = $this->request->only(['page' => 1, 'size' => 10,'status'=>''], 'post');
- return ServiceLogic::orderList($param);
- }
-
- public function orderInfo(){
- $id = $this->request->post('id/d', 0);
- return ServiceLogic::orderInfo($id);
- }
- }
|