Order.php 914 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace app\mobile\controller;
  3. use app\BaseController;
  4. use app\mobile\logic\OrderLogic;
  5. use think\exception\ValidateException;
  6. use think\facade\Config;
  7. use think\facade\Validate;
  8. //【订单】
  9. class Order extends BaseController
  10. {
  11. //兑换商品下单
  12. public function add(){
  13. $param = $this->request->only(['good_id','addr_id','num','remark'],'post');
  14. $val = Validate::rule(Config::get('validate_rules.ExchangeOrderAdd'));
  15. if(!$val->check($param)) throw new ValidateException($val->getError());
  16. return OrderLogic::add($param);
  17. }
  18. //订单列表
  19. public function list(){
  20. $param = $this->request->only(['page' => 1, 'size' => 10,'status'=>''], 'post');
  21. return OrderLogic::list($param);
  22. }
  23. //订单详情
  24. public function info(){
  25. $id = $this->request->post('id/d', 0);
  26. return OrderLogic::info($id);
  27. }
  28. }