Exchange.php 750 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\mobile\controller;
  3. use app\BaseController;
  4. use app\mobile\logic\ExchangeLogic;
  5. use think\exception\ValidateException;
  6. use think\facade\Config;
  7. use think\facade\Validate;
  8. //兑换
  9. class Exchange extends BaseController
  10. {
  11. //商品列表
  12. public function goodList()
  13. {
  14. $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
  15. return ExchangeLogic::goodList($param);
  16. }
  17. //商品详情
  18. public function goodInfo()
  19. {
  20. $code = $this->request->post('code', '');
  21. $val=Validate::rule(Config::get('validate_rules.goodInfo'));
  22. if(!$val->check(['code'=>$code])) throw new ValidateException($val->getError());
  23. return ExchangeLogic::goodInfo($code);
  24. }
  25. }