OrderExchange.php 655 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\logic\OrderExchangeLogic;
  4. use app\BaseController;
  5. class OrderExchange extends BaseController
  6. {
  7. //列表
  8. public function list(){
  9. $param = $this->request->only(['page' => 1, 'size' => 10, 'orderCode'=>'','status' => '', 'name' => '', 'username' => '','start_date'=>'','end_date'=>''], 'post');
  10. return OrderExchangeLogic::list($param);
  11. }
  12. //详情
  13. public function read(){
  14. $id = $this->request->post('id/d',0);
  15. return OrderExchangeLogic::read($id);
  16. }
  17. //导出
  18. public function export(){}
  19. //发货
  20. public function out(){
  21. }
  22. }