Common.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\mobile\controller;
  3. use app\mobile\logic\CommonLogic;
  4. use app\admin\logic\CommonLogic as AdminCommonLogic;
  5. use app\BaseController;
  6. use app\mobile\logic\AccountLogic;
  7. use app\model\CommonModel;
  8. use think\exception\ValidateException;
  9. use think\facade\Config;
  10. use think\facade\Validate;
  11. //公共
  12. class Common extends BaseController
  13. {
  14. //省市区编码
  15. public function area()
  16. {
  17. $parent_code = $this->request->post('parent_code', '');
  18. return AdminCommonLogic::getAddr($parent_code);
  19. }
  20. //视频列表
  21. public function getVideoList()
  22. {
  23. $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
  24. return CommonLogic::getVideoList($param);
  25. }
  26. //手机主题
  27. public function theme()
  28. {
  29. return CommonLogic::theme();
  30. }
  31. //微信支付预下单
  32. public function getPrepayId()
  33. {
  34. $param = $this->request->only(['type', 'list', 'addr_id'], 'post');
  35. $val = Validate::rule([
  36. 'type|购买类型' => 'require|number|in:' . CommonModel::$pay_type_service . ',' . CommonModel::$pay_type_shopping_good,
  37. 'list|购买列表' => 'require|array|max:100',
  38. 'addr_id|收货地址' => 'require|number|gt:0'
  39. ]);
  40. if (!$val->check($param)) throw new ValidateException($val->getError());
  41. $val2 = Validate::rule([
  42. 'id' => 'require|number|gt:0',
  43. 'num|购买数量' => 'require|number|max:99999999',
  44. ]);
  45. foreach ($param['list'] as $list) {
  46. if (!$val2->check($list)) throw new ValidateException($val2->getError());
  47. }
  48. return CommonLogic::getPrepayId($param);
  49. }
  50. //微信支付成功后的异步通知及订单处理
  51. public function Notify(){
  52. return CommonLogic::Notify();
  53. }
  54. }