截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ShopWithdrawal.php 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace app\admin\controller\setting;
  3. use app\common\basics\AdminBase;
  4. use app\common\enum\ShopWithdrawEnum;
  5. use app\common\logic\SettingLogic;
  6. use app\common\server\ConfigServer;
  7. use app\common\server\JsonServer;
  8. use think\facade\View;
  9. class ShopWithdrawal extends AdminBase
  10. {
  11. /**
  12. * @Notes: 商家提现配置页
  13. * @Author: 张无忌
  14. */
  15. public function index()
  16. {
  17. return view('', [
  18. 'detail' => SettingLogic::getShopWithdraw(),
  19. 'type_list' => ShopWithdrawEnum::TYPE_TEXT_ARR2,
  20. ]);
  21. }
  22. /**
  23. * @Notes: 设置商家提现
  24. * @Author: 张无忌
  25. */
  26. public function set()
  27. {
  28. $post = $this->request->post();
  29. $withdrawal_type = $post['withdrawal_type'] ?? [];
  30. if (empty($withdrawal_type)) {
  31. return JsonServer::error('提现方式至少选择一种');
  32. }
  33. SettingLogic::setShopWithdraw($post);
  34. return JsonServer::success('设置成功');
  35. }
  36. }