1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\admin\controller;
- use app\admin\logic\OrderExchangeLogic;
- use app\BaseController;
- class OrderExchange extends BaseController
- {
- //列表
- public function list(){
- $param = $this->request->only(['page' => 1, 'size' => 10, 'orderCode'=>'','status' => '', 'name' => '', 'username' => '','start_date'=>'','end_date'=>''], 'post');
- return OrderExchangeLogic::list($param);
- }
- //详情
- public function read(){
- $id = $this->request->post('id/d',0);
- return OrderExchangeLogic::read($id);
- }
- //导出
- public function export(){}
- //发货
- public function out(){
- }
- }
|