mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]修复用户授权完全取消时不能成功
This commit is contained in:
parent
9edbabdac9
commit
4f5afd6905
@ -133,6 +133,8 @@ class User extends BasicAdmin
|
||||
if ($this->request->isPost()) {
|
||||
if (isset($data['authorize']) && is_array($data['authorize'])) {
|
||||
$data['authorize'] = join(',', $data['authorize']);
|
||||
} else {
|
||||
$data['authorize'] = '';
|
||||
}
|
||||
if (isset($data['id'])) {
|
||||
unset($data['username']);
|
||||
|
6
config/aliyun.php
Normal file
6
config/aliyun.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'appid' => 'WjeX0AYSfgy5VbXQ',
|
||||
'appkey' => 'hQTENHy6MYVUTgwjcgfOCq5gckm2Lp',
|
||||
];
|
@ -16,13 +16,13 @@ return [
|
||||
// 数据库类型
|
||||
'type' => 'mysql',
|
||||
// 服务器地址
|
||||
'hostname' => '127.0.0.1',
|
||||
'hostname' => 'server.cuci.cc',
|
||||
// 数据库名
|
||||
'database' => 'admin_v3',
|
||||
// 用户名
|
||||
'username' => 'admin_v3',
|
||||
'username' => 'root',
|
||||
// 密码
|
||||
'password' => 'FbYBHcWKr2',
|
||||
'password' => 'Test12345',
|
||||
// 端口
|
||||
'hostport' => '3306',
|
||||
// 连接dsn
|
||||
|
Loading…
x
Reference in New Issue
Block a user