截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\shop\controller\distribution;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\JsonServer;
  5. use app\shop\logic\distribution\OrderLogic;
  6. class Order extends ShopBase
  7. {
  8. /**
  9. * @notes 分销订单列表
  10. * @return \think\response\View
  11. * @author Tab
  12. * @date 2021/9/3 14:38
  13. */
  14. public function index()
  15. {
  16. if($this->request->isPost()) {
  17. $params = $this->request->post();
  18. $params['shop_id'] = $this->shop_id;
  19. $result = OrderLogic::lists($params);
  20. return JsonServer::success('', $result);
  21. }
  22. return view();
  23. }
  24. }