|
|
@@ -39,8 +39,7 @@ class UserController extends BaseController
|
|
|
$where['name'] = ['like', $search];
|
|
|
}
|
|
|
}
|
|
|
- //$list = CustomService::getOldCustomList($where);
|
|
|
- $list = UserService::getUserList($where);
|
|
|
+ $list = CustomService::getOldCustomList($where);
|
|
|
util::success($list);
|
|
|
}
|
|
|
|
|
|
@@ -97,6 +96,7 @@ class UserController extends BaseController
|
|
|
//充值 shish 2019.12.1
|
|
|
public function actionRecharge()
|
|
|
{
|
|
|
+ util::fail('此功能已停用');
|
|
|
$post = Yii::$app->request->post();
|
|
|
$confirmPassword = isset($post['confirmPassword']) ? $post['confirmPassword'] : '';
|
|
|
AdminService::verifyConfirmPassword($this->adminId, $confirmPassword);
|
|
|
@@ -126,6 +126,7 @@ class UserController extends BaseController
|
|
|
//升级 shish 2019.12.1
|
|
|
public function actionUpgrade()
|
|
|
{
|
|
|
+ util::fail('此功能已停用');
|
|
|
$post = Yii::$app->request->post();
|
|
|
$userId = isset($post['userId']) ? $post['userId'] : 0;
|
|
|
$member = isset($post['member']) ? $post['member'] : 0;
|