SettingLogic::getShopWithdraw(), 'type_list' => ShopWithdrawEnum::TYPE_TEXT_ARR2, ]); } /** * @Notes: 设置商家提现 * @Author: 张无忌 */ public function set() { $post = $this->request->post(); $withdrawal_type = $post['withdrawal_type'] ?? []; if (empty($withdrawal_type)) { return JsonServer::error('提现方式至少选择一种'); } SettingLogic::setShopWithdraw($post); return JsonServer::success('设置成功'); } }