Config.php 1010 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace app\data\controller\api\auth;
  3. use app\data\controller\api\Auth;
  4. use app\data\service\PaymentService;
  5. /**
  6. * 接口数据配置
  7. * Class Config
  8. * @package app\data\controller\api\auth
  9. */
  10. class Config extends Auth
  11. {
  12. /**
  13. * 获取支付参数数据
  14. * @throws \think\db\exception\DataNotFoundException
  15. * @throws \think\db\exception\DbException
  16. * @throws \think\db\exception\ModelNotFoundException
  17. */
  18. public function getPayment()
  19. {
  20. $types = [];
  21. foreach (PaymentService::TYPES as $type => $arr) {
  22. if (isset($arr['bind']) && in_array($this->type, $arr['bind'])) {
  23. $types[] = $type;
  24. }
  25. }
  26. $map = ['status' => 1, 'deleted' => 0];
  27. $query = $this->app->db->name('ShopPayment')->where($map)->whereIn('type', $types);
  28. $collect = $query->order('sort desc,id desc')->field('code,name,type')->select();
  29. $this->success('获取支付参数数据', $collect->toArray());
  30. }
  31. }