Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/finance/UserExtract.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

161 lines
4.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\finance;
use app\controller\admin\AuthController;
use app\services\user\UserExtractServices;
use think\annotation\Inject;
use think\Request;
/**
* Class UserExtract
* @package app\controller\admin\v1\finance
*/
class UserExtract extends AuthController
{
/**
* @var UserExtractServices
*/
#[Inject]
protected UserExtractServices $services;
/**
* 显示资源列表
*
* @return \think\Response
*/
public function index()
{
$where = $this->request->getMore([
['status', ''],
['extract_type', ''],
['nireid', '', '', 'like'],
['data', '', '', 'time'],
]);
if (isset($where['extract_type']) && $where['extract_type'] == 'wx') {
$where['extract_type'] = 'weixin';
}
return $this->success($this->services->index($where));
}
/**
* 显示编辑资源表单页.
*
* @param int $id
* @return \think\Response
*/
public function edit($id)
{
if (!$id) return $this->fail('数据不存在');
return $this->success($this->services->edit((int)$id));
}
/**
* 保存更新的资源
*
* @param \think\Request $request
* @param int $id
* @return \think\Response
*/
public function update(Request $request, $id)
{
if (!$id) return $this->fail('缺少参数!');
$id = (int)$id;
$UserExtract = $this->services->getExtract($id);
if (!$UserExtract) $this->fail('数据不存在');
if ($UserExtract['extract_type'] == 'alipay') {
$data = $this->request->postMore([
'real_name',
'mark',
'extract_price',
'alipay_code',
]);
if (!$data['real_name']) return $this->fail('请输入姓名');
if ($data['extract_price'] <= -1) return $this->fail('请输入提现金额');
if (!$data['alipay_code']) return $this->fail('请输入支付宝账号');
} else if ($UserExtract['extract_type'] == 'weixin') {
$data = $this->request->postMore([
'real_name',
'mark',
'extract_price',
'wechat',
]);
if ($data['extract_price'] <= -1) return $this->fail('请输入提现金额');
if (!$data['wechat']) return $this->fail('请输入微信账号');
} else {
$data = $this->request->postMore([
'real_name',
'extract_price',
'mark',
'bank_code',
'bank_address',
]);
if (!$data['real_name']) return $this->fail('请输入姓名');
if ($data['extract_price'] <= -1) return $this->fail('请输入提现金额');
if (!$data['bank_code']) return $this->fail('请输入银行卡号');
if (!$data['bank_address']) return $this->fail('请输入开户行');
}
return $this->success($this->services->update($id, $data) ? '修改成功' : '修改失败');
}
/**
* 拒绝
* @param $id
* @return mixed
*/
public function refuse($id)
{
if (!$id) $this->fail('缺少参数');
$data = $this->request->postMore([
['message', '']
]);
return $this->success($this->services->refuse((int)$id, $data['message']) ? '操作成功' : '操作失败');
}
/**
* 通过
* @param $id
* @return mixed
*/
public function adopt($id)
{
if (!$id) $this->fail('缺少参数');
return $this->success($this->services->adopt((int)$id) ? '操作成功' : '操作失败');
}
/**
* 备注表单
* @param $id
* @return \think\Response
* User: liusl
* DateTime: 2024/9/12 10:47
*/
public function remarkForm($id)
{
if (!$id) return $this->fail('数据不存在');
return $this->success($this->services->remarkForm((int)$id));
}
/**
* 备注
* @param $id
* @return \think\Response
* User: liusl
* DateTime: 2024/9/12 10:47
*/
public function remarkUpdate($id)
{
if (!$id) $this->fail('缺少参数');
[$make] = $this->request->postMore([
['mark', '']
], true);
if (!$make) return $this->fail('请输入备注');
$res = $this->services->update($id, ['mark' => $make]);
return $this->success($res ? '操作成功' : '操作失败');
}
}