Order.php 855 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace addons\shopro\controller\store;
  3. class Order extends Base
  4. {
  5. protected $noNeedLogin = [];
  6. protected $noNeedRight = ['*'];
  7. public function index()
  8. {
  9. $params = $this->request->get();
  10. $this->success('订单列表', \addons\shopro\model\store\Order::getList($params));
  11. }
  12. public function detail()
  13. {
  14. $params = $this->request->get();
  15. $this->success('订单详情', \addons\shopro\model\store\Order::detail($params));
  16. }
  17. public function send() {
  18. $params = $this->request->post();
  19. $this->success('发货成功', \addons\shopro\model\store\Order::operSend($params));
  20. }
  21. public function confirm()
  22. {
  23. $params = $this->request->post();
  24. $this->success('核销成功', \addons\shopro\model\store\Order::operConfirm($params));
  25. }
  26. }