12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\mobile\controller;
- use app\BaseController;
- use app\mobile\logic\ExchangeLogic;
- use think\exception\ValidateException;
- use think\facade\Config;
- use think\facade\Validate;
- //兑换
- class Exchange extends BaseController
- {
- //商品列表
- public function goodList()
- {
- $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
- return ExchangeLogic::goodList($param);
- }
- //商品详情
- public function goodInfo()
- {
- $code = $this->request->post('code', '');
- $val=Validate::rule(Config::get('validate_rules.goodInfo'));
- if(!$val->check(['code'=>$code])) throw new ValidateException($val->getError());
- return ExchangeLogic::goodInfo($code);
- }
- //兑换商品下单
- public function orderAdd(){
- $param = $this->request->only(['good_id','addr_id','num','remark'],'post');
- $val = Validate::rule(Config::get('validate_rules.ExchangeOrderAdd'));
- if(!$val->check($param)) throw new ValidateException($val->getError());
- return ExchangeLogic::orderAdd($param);
- }
- }
|