截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

PayConfig.php 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\setting;
  20. use app\admin\logic\PayConfigLogic;
  21. use app\common\basics\AdminBase;
  22. use app\common\server\ConfigServer;
  23. use app\common\server\JsonServer;
  24. use think\db\exception\DataNotFoundException;
  25. use think\db\exception\DbException;
  26. use think\db\exception\ModelNotFoundException;
  27. /**
  28. * Class PayConfig
  29. * @package app\admin\controller\setting
  30. */
  31. class PayConfig extends AdminBase
  32. {
  33. /**
  34. * @notes 支付列表
  35. * @return \think\response\Json|\think\response\View
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @author suny
  40. * @date 2021/7/13 7:03 下午
  41. */
  42. public function lists()
  43. {
  44. if ($this->request->isAjax()) {
  45. return JsonServer::success('', PayConfigLogic::lists());
  46. }
  47. return view();
  48. }
  49. /**
  50. * @notes 余额配置
  51. * @return \think\response\Json|\think\response\View
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\DbException
  54. * @throws \think\db\exception\ModelNotFoundException
  55. * @author suny
  56. * @date 2021/7/13 7:03 下午
  57. */
  58. public function editBalance()
  59. {
  60. if ($this->request->isAjax()) {
  61. $post = $this->request->post();
  62. if (empty($post['image']) && $post['status'] == 1) {
  63. return JsonServer::error('请选择支付图标');
  64. }
  65. PayConfigLogic::editBalance($post);
  66. return JsonServer::success('修改成功');
  67. }
  68. return view('', ['info' => PayConfigLogic::info('balance')]);
  69. }
  70. /**
  71. * @notes 微信配置
  72. * @return \think\response\Json|\think\response\View
  73. * @throws \think\db\exception\DataNotFoundException
  74. * @throws \think\db\exception\DbException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @author suny
  77. * @date 2021/7/13 7:03 下午
  78. */
  79. public function editWechat()
  80. {
  81. if ($this->request->isAjax()) {
  82. $post = $this->request->post();
  83. if ($post['status'] == 1) {
  84. if (empty($post['image'])) {
  85. return JsonServer::error('请选择支付图标');
  86. }
  87. if ($post['apiclient_cert'] == '' || $post['apiclient_key'] == '') {
  88. return JsonServer::error('apiclient_cert或apiclient_key不能为空');
  89. }
  90. }
  91. PayConfigLogic::editWechat($post);
  92. return JsonServer::success('修改成功');
  93. }
  94. $domain_name = ConfigServer::get('website', 'domain_name', '');
  95. return view('', [
  96. 'domain' => $domain_name ? $domain_name : request()->domain(),
  97. 'info' => PayConfigLogic::info('wechat')
  98. ]);
  99. }
  100. /**
  101. * @notes 支付宝配置
  102. * @return \think\response\Json|\think\response\View
  103. * @throws \think\Exception
  104. * @throws \think\db\exception\DataNotFoundException
  105. * @throws \think\db\exception\DbException
  106. * @throws \think\db\exception\ModelNotFoundException
  107. * @throws \think\exception\PDOException
  108. * @author suny
  109. * @date 2021/7/13 7:03 下午
  110. */
  111. public function editAlipay()
  112. {
  113. if ($this->request->isAjax()) {
  114. $post = $this->request->post();
  115. if (empty($post['image']) && $post['status'] == 1) {
  116. return JsonServer::error('请选择支付图标');
  117. }
  118. PayConfigLogic::editAlipay($post);
  119. return JsonServer::success('修改成功');
  120. }
  121. return view('', ['info' => PayConfigLogic::info('alipay')]);
  122. }
  123. /**
  124. * @notes 汇付斗拱微信配置
  125. * @return \think\response\Json|\think\response\View
  126. * @throws DbException
  127. * @throws ModelNotFoundException
  128. * @throws DataNotFoundException
  129. * @author lbzy
  130. * @datetime 2023-10-08 14:47:06
  131. */
  132. function editHfdgWechat()
  133. {
  134. if ($this->request->isAjax()) {
  135. $post = $this->request->post();
  136. if (empty($post['image']) && $post['status'] == 1) {
  137. return JsonServer::error('请选择支付图标');
  138. }
  139. PayConfigLogic::editHfdgWechat($post);
  140. return JsonServer::success('修改成功');
  141. }
  142. return view('', [ 'info' => PayConfigLogic::info('hfdg_wechat') ]);
  143. }
  144. /**
  145. * @notes 汇付斗拱支付宝配置
  146. * @return \think\response\Json|\think\response\View
  147. * @throws DbException
  148. * @throws ModelNotFoundException
  149. * @throws DataNotFoundException
  150. * @author lbzy
  151. * @datetime 2023-10-18 14:55:30
  152. */
  153. function editHfdgAlipay()
  154. {
  155. if ($this->request->isAjax()) {
  156. $post = $this->request->post();
  157. if (empty($post['image']) && $post['status'] == 1) {
  158. return JsonServer::error('请选择支付图标');
  159. }
  160. PayConfigLogic::editHfdgAlipay($post);
  161. return JsonServer::success('修改成功');
  162. }
  163. return view('', [ 'info' => PayConfigLogic::info('hfdg_alipay') ]);
  164. }
  165. /**
  166. * @notes 线下支付
  167. * @return \think\response\Json|\think\response\View
  168. * @throws DataNotFoundException
  169. * @throws DbException
  170. * @throws ModelNotFoundException
  171. * @author ljj
  172. * @date 2024/7/19 下午3:16
  173. */
  174. public function editOffline()
  175. {
  176. if ($this->request->isAjax()) {
  177. $post = $this->request->post();
  178. if (empty($post['image']) && $post['status'] == 1) {
  179. return JsonServer::error('请选择支付图标');
  180. }
  181. PayConfigLogic::editOffline($post);
  182. return JsonServer::success('修改成功');
  183. }
  184. return view('', ['info' => PayConfigLogic::info('offline')]);
  185. }
  186. }