mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-05-23 06:59:44 +08:00
优化代码
This commit is contained in:
parent
f4f6049b28
commit
5eb2439e01
@ -105,7 +105,7 @@ class Admin extends Controller
|
|||||||
$map = $this->_vali(['id.require' => '用户ID不能为空!']);
|
$map = $this->_vali(['id.require' => '用户ID不能为空!']);
|
||||||
$user = $this->app->db->name($this->table)->where($map)->find();
|
$user = $this->app->db->name($this->table)->where($map)->find();
|
||||||
if (empty($user) || empty($user['pid0'])) $this->error('用户不符合操作要求!');
|
if (empty($user) || empty($user['pid0'])) $this->error('用户不符合操作要求!');
|
||||||
[$status, $message] = UserUpgradeService::instance()->bindAgent($user['id'], $user['pid0'], 1);
|
[$status, $message] = UserUpgradeService::instance()->bindAgent($user['id'], $user['pid0']);
|
||||||
$status && sysoplog('前端用户管理', "后台修改用户[{$map['id']}]的代理为永久状态");
|
$status && sysoplog('前端用户管理', "后台修改用户[{$map['id']}]的代理为永久状态");
|
||||||
empty($status) ? $this->error($message) : $this->success($message);
|
empty($status) ? $this->error($message) : $this->success($message);
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ class Transfer extends Controller
|
|||||||
* @throws \think\db\exception\DbException
|
* @throws \think\db\exception\DbException
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
* @throws \think\db\exception\ModelNotFoundException
|
||||||
*/
|
*/
|
||||||
private function _sysdata($tpl = '')
|
private function _sysdata(string $tpl = '')
|
||||||
{
|
{
|
||||||
if ($this->request->isGet()) {
|
if ($this->request->isGet()) {
|
||||||
$this->data = sysdata($this->skey);
|
$this->data = sysdata($this->skey);
|
||||||
|
@ -58,7 +58,7 @@ class OrderService extends Service
|
|||||||
// 尝试绑定代理用户
|
// 尝试绑定代理用户
|
||||||
if (empty($user['pids']) && ($order['puid1'] > 0 || $user['pid1'] > 0)) {
|
if (empty($user['pids']) && ($order['puid1'] > 0 || $user['pid1'] > 0)) {
|
||||||
$puid1 = $order['puid1'] > 0 ? $order['puid1'] : $user['pid0'];
|
$puid1 = $order['puid1'] > 0 ? $order['puid1'] : $user['pid0'];
|
||||||
UserUpgradeService::instance()->bindAgent($user['id'], $puid1, 1);
|
UserUpgradeService::instance()->bindAgent($user['id'], $puid1);
|
||||||
}
|
}
|
||||||
// 重置用户信息并绑定订单
|
// 重置用户信息并绑定订单
|
||||||
$user = $this->app->db->name('DataUser')->where(['id' => $order['uid']])->find();
|
$user = $this->app->db->name('DataUser')->where(['id' => $order['uid']])->find();
|
||||||
|
@ -65,7 +65,7 @@ class UserUpgradeService extends Service
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 更新用户等级
|
// 更新用户等级
|
||||||
$this->upgrade($user['id'], true);
|
$this->upgrade($user['id']);
|
||||||
$result = [1, '绑定代理成功'];
|
$result = [1, '绑定代理成功'];
|
||||||
});
|
});
|
||||||
return $result;
|
return $result;
|
||||||
|
@ -163,7 +163,7 @@ class JoinpayPaymentService extends PaymentService
|
|||||||
protected function initialize(): JoinpayPaymentService
|
protected function initialize(): JoinpayPaymentService
|
||||||
{
|
{
|
||||||
$this->appid = $this->params['joinpay_appid'];
|
$this->appid = $this->params['joinpay_appid'];
|
||||||
$this->trade = $this->params['joinpay_trade'];;
|
$this->trade = $this->params['joinpay_trade'];
|
||||||
$this->mchid = $this->params['joinpay_mch_id'];
|
$this->mchid = $this->params['joinpay_mch_id'];
|
||||||
$this->mchkey = $this->params['joinpay_mch_key'];
|
$this->mchkey = $this->params['joinpay_mch_key'];
|
||||||
return $this;
|
return $this;
|
||||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
// This file is automatically generated at:2021-05-19 18:51:50
|
// This file is automatically generated at:2021-05-19 19:06:53
|
||||||
declare (strict_types = 1);
|
declare (strict_types = 1);
|
||||||
return array (
|
return array (
|
||||||
0 => 'think\\admin\\Library',
|
0 => 'think\\admin\\Library',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user