调整数据库表的单复数

This commit is contained in:
2026-02-19 10:39:38 +08:00
parent 736a41a718
commit d310a29c03
56 changed files with 45577 additions and 506 deletions
+1 -1
View File
@@ -628,7 +628,7 @@ #### 基础模块迁移
**表命名示例:** **表命名示例:**
- Auth 模块: `auth_users`, `auth_roles`, `auth_permissions`, `auth_role_permission` - Auth 模块: `auth_users`, `auth_roles`, `auth_permissions`, `auth_role_permission`
- System 模块: `system_configs`, `system_logs`, `system_dictionaries` - System 模块: `system_setting`, `system_logs`, `system_dictionaries`
**迁移文件示例:** **迁移文件示例:**
```php ```php
+2 -2
View File
@@ -130,9 +130,9 @@ public function batchUpdateStatus(Request $request)
]); ]);
} }
public function children(int $parentId) public function children(string $parentCode)
{ {
$children = $this->cityService->getChildren($parentId); $children = $this->cityService->getChildren($parentCode);
return response()->json([ return response()->json([
'code' => 200, 'code' => 200,
'message' => 'success', 'message' => 'success',
+1 -1
View File
@@ -11,7 +11,7 @@ class Department extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'auth_departments'; protected $table = 'auth_department';
protected $fillable = [ protected $fillable = [
'name', 'name',
+1 -1
View File
@@ -11,7 +11,7 @@ class Permission extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'auth_permissions'; protected $table = 'auth_permission';
protected $fillable = [ protected $fillable = [
'title', 'title',
+1 -1
View File
@@ -11,7 +11,7 @@ class Role extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'auth_roles'; protected $table = 'auth_role';
protected $fillable = [ protected $fillable = [
'name', 'name',
+1 -1
View File
@@ -14,7 +14,7 @@ class User extends Authenticatable implements JWTSubject
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'auth_users'; protected $table = 'auth_user';
protected $fillable = [ protected $fillable = [
'username', 'username',
+19 -24
View File
@@ -9,40 +9,35 @@
class City extends Model class City extends Model
{ {
use ModelTrait; use ModelTrait;
protected $table = 'system_cities'; protected $table = 'system_city';
protected $fillable = [ protected $fillable = [
'parent_id', 'title',
'name',
'code', 'code',
'pinyin', 'parent_code',
'pinyin_short',
'level',
'sort',
'status',
];
protected $casts = [
'parent_id' => 'integer',
'level' => 'integer',
'sort' => 'integer',
'status' => 'boolean',
]; ];
/**
* 子级城市
*/
public function children(): HasMany public function children(): HasMany
{ {
return $this->hasMany(City::class, 'parent_id')->orderBy('sort'); return $this->hasMany(City::class, 'parent_code', 'code');
}
public function activeChildren(): HasMany
{
return $this->hasMany(City::class, 'parent_id')
->where('status', true)
->orderBy('sort');
} }
/**
* 父级城市
*/
public function parent() public function parent()
{ {
return $this->belongsTo(City::class, 'parent_id'); return $this->belongsTo(City::class, 'parent_code', 'code');
}
/**
* 判断是否是顶级城市(省/直辖市/自治区)
*/
public function isTopLevel(): bool
{
return empty($this->parent_code);
} }
} }
+1 -1
View File
@@ -10,7 +10,7 @@ class Config extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'system_configs'; protected $table = 'system_setting';
protected $fillable = [ protected $fillable = [
'group', 'group',
+1 -1
View File
@@ -11,7 +11,7 @@ class Dictionary extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'system_dictionaries'; protected $table = 'system_dictionary';
protected $fillable = [ protected $fillable = [
'name', 'name',
+1 -1
View File
@@ -9,7 +9,7 @@
class DictionaryItem extends Model class DictionaryItem extends Model
{ {
use ModelTrait; use ModelTrait;
protected $table = 'system_dictionary_items'; protected $table = 'system_dictionary_item';
protected $fillable = [ protected $fillable = [
'dictionary_id', 'dictionary_id',
+1 -1
View File
@@ -9,7 +9,7 @@
class Log extends Model class Log extends Model
{ {
use ModelTrait; use ModelTrait;
protected $table = 'system_logs'; protected $table = 'system_log';
protected $fillable = [ protected $fillable = [
'user_id', 'user_id',
+1 -1
View File
@@ -11,7 +11,7 @@ class Notification extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'system_notifications'; protected $table = 'system_notification';
protected $fillable = [ protected $fillable = [
'user_id', 'user_id',
+1 -1
View File
@@ -10,7 +10,7 @@ class Task extends Model
{ {
use ModelTrait, SoftDeletes; use ModelTrait, SoftDeletes;
protected $table = 'system_tasks'; protected $table = 'system_task';
protected $fillable = [ protected $fillable = [
'name', 'name',
+98 -59
View File
@@ -12,27 +12,18 @@ public function getList(array $params): array
{ {
$query = City::query(); $query = City::query();
if (!empty($params['parent_id'])) { if (!empty($params['parent_code'])) {
$query->where('parent_id', $params['parent_id']); $query->where('parent_code', $params['parent_code']);
}
if (!empty($params['level'])) {
$query->where('level', $params['level']);
} }
if (!empty($params['keyword'])) { if (!empty($params['keyword'])) {
$query->where(function ($q) use ($params) { $query->where(function ($q) use ($params) {
$q->where('name', 'like', '%' . $params['keyword'] . '%') $q->where('title', 'like', '%' . $params['keyword'] . '%')
->orWhere('code', 'like', '%' . $params['keyword'] . '%') ->orWhere('code', 'like', '%' . $params['keyword'] . '%');
->orWhere('pinyin', 'like', '%' . $params['keyword'] . '%');
}); });
} }
if (isset($params['status']) && $params['status'] !== '') { $query->orderBy('id');
$query->where('status', $params['status']);
}
$query->orderBy('sort')->orderBy('id');
$pageSize = $params['page_size'] ?? 20; $pageSize = $params['page_size'] ?? 20;
$list = $query->paginate($pageSize); $list = $query->paginate($pageSize);
@@ -47,14 +38,13 @@ public function getList(array $params): array
public function getTree(): array public function getTree(): array
{ {
return $this->buildTree(City::where('status', true)->orderBy('sort')->get()); return $this->buildTree(City::orderBy('id')->get());
} }
public function getChildren(int $parentId): array public function getChildren(string $parentCode): array
{ {
return City::where('parent_id', $parentId) return City::where('parent_code', $parentCode)
->where('status', true) ->orderBy('id')
->orderBy('sort')
->get() ->get()
->toArray(); ->toArray();
} }
@@ -69,21 +59,12 @@ public function getById(int $id): ?City
return City::find($id); return City::find($id);
} }
public function getByPinyin(string $pinyin): array
{
return City::where('pinyin', 'like', '%' . $pinyin . '%')
->where('status', true)
->get()
->toArray();
}
public function create(array $data): City public function create(array $data): City
{ {
Validator::make($data, [ Validator::make($data, [
'name' => 'required|string|max:100', 'title' => 'required|string|max:100',
'code' => 'required|string|max:50|unique:system_cities,code', 'code' => 'required|string|max:50|unique:system_city,code',
'level' => 'required|integer|in:1,2,3', 'parent_code' => 'sometimes|nullable|exists:system_city,code',
'parent_id' => 'sometimes|exists:system_cities,id',
])->validate(); ])->validate();
$city = City::create($data); $city = City::create($data);
@@ -96,12 +77,16 @@ public function update(int $id, array $data): City
$city = City::findOrFail($id); $city = City::findOrFail($id);
Validator::make($data, [ Validator::make($data, [
'name' => 'sometimes|required|string|max:100', 'title' => 'sometimes|required|string|max:100',
'code' => 'sometimes|required|string|max:50|unique:system_cities,code,' . $id, 'code' => 'sometimes|required|string|max:50|unique:system_city,code,' . $id,
'level' => 'sometimes|required|integer|in:1,2,3', 'parent_code' => 'sometimes|nullable|exists:system_city,code',
'parent_id' => 'sometimes|exists:system_cities,id',
])->validate(); ])->validate();
// 防止循环引用
if (isset($data['parent_code']) && $data['parent_code'] === $city->code) {
throw new \Exception('不能将城市设置为自己的子级');
}
$city->update($data); $city->update($data);
$this->clearCache(); $this->clearCache();
return $city; return $city;
@@ -127,19 +112,69 @@ public function batchDelete(array $ids): bool
return true; return true;
} }
public function batchUpdateStatus(array $ids, bool $status): bool /**
* 获取所有顶级城市(省/直辖市/自治区)
*/
public function getTopLevel(): array
{ {
City::whereIn('id', $ids)->update(['status' => $status]); return City::whereNull('parent_code')
$this->clearCache(); ->orderBy('id')
return true; ->get()
->toArray();
} }
private function buildTree(array $cities, int $parentId = 0): array /**
* 根据父级编码获取城市
*/
public function getByParentCode(string $parentCode): array
{
return City::where('parent_code', $parentCode)
->orderBy('id')
->get()
->toArray();
}
/**
* 获取城市的完整路径(从顶级到当前)
*/
public function getPath(string $code): array
{
$path = [];
$city = $this->getByCode($code);
while ($city) {
array_unshift($path, $city);
$city = $city->parent;
}
return $path;
}
/**
* 获取城市的所有子孙
*/
public function getDescendants(string $code): array
{
$descendants = [];
$this->collectDescendants($code, $descendants);
return $descendants;
}
private function collectDescendants(string $parentCode, array &$result): void
{
$children = City::where('parent_code', $parentCode)->get();
foreach ($children as $child) {
$result[] = $child;
$this->collectDescendants($child->code, $result);
}
}
private function buildTree($cities, string $parentCode = ''): array
{ {
$tree = []; $tree = [];
foreach ($cities as $city) { foreach ($cities as $city) {
if ($city['parent_id'] == $parentId) { if ($city->parent_code == $parentCode) {
$children = $this->buildTree($cities, $city['id']); $children = $this->buildTree($cities, $city->code);
if (!empty($children)) { if (!empty($children)) {
$city['children'] = $children; $city['children'] = $children;
} }
@@ -167,32 +202,36 @@ public function getCachedTree(): array
return $tree; return $tree;
} }
/**
* 获取省份(兼容旧接口)
*/
public function getProvinces(): array public function getProvinces(): array
{ {
return City::where('level', 1) return $this->getTopLevel();
->where('status', true)
->orderBy('sort')
->get()
->toArray();
} }
/**
* 获取城市(兼容旧接口)
*/
public function getCities(int $provinceId): array public function getCities(int $provinceId): array
{ {
return City::where('parent_id', $provinceId) // 由于新结构使用code关联,这里需要根据id找到对应的code
->where('level', 2) $province = City::find($provinceId);
->where('status', true) if (!$province) {
->orderBy('sort') return [];
->get() }
->toArray(); return $this->getByParentCode($province->code);
} }
/**
* 获取区县(兼容旧接口)
*/
public function getDistricts(int $cityId): array public function getDistricts(int $cityId): array
{ {
return City::where('parent_id', $cityId) $city = City::find($cityId);
->where('level', 3) if (!$city) {
->where('status', true) return [];
->orderBy('sort') }
->get() return $this->getByParentCode($city->code);
->toArray();
} }
} }
+2 -2
View File
@@ -88,7 +88,7 @@ public function create(array $data): Config
{ {
Validator::make($data, [ Validator::make($data, [
'group' => 'required|string|max:50', 'group' => 'required|string|max:50',
'key' => 'required|string|max:100|unique:system_configs,key', 'key' => 'required|string|max:100|unique:system_setting,key',
'name' => 'required|string|max:100', 'name' => 'required|string|max:100',
'type' => 'required|string|in:string,text,number,boolean,select,radio,checkbox,file,json', 'type' => 'required|string|in:string,text,number,boolean,select,radio,checkbox,file,json',
])->validate(); ])->validate();
@@ -104,7 +104,7 @@ public function update(int $id, array $data): Config
Validator::make($data, [ Validator::make($data, [
'group' => 'sometimes|required|string|max:50', 'group' => 'sometimes|required|string|max:50',
'key' => 'sometimes|required|string|max:100|unique:system_configs,key,' . $id, 'key' => 'sometimes|required|string|max:100|unique:system_setting,key,' . $id,
'name' => 'sometimes|required|string|max:100', 'name' => 'sometimes|required|string|max:100',
'type' => 'sometimes|required|string|in:string,text,number,boolean,select,radio,checkbox,file,json', 'type' => 'sometimes|required|string|in:string,text,number,boolean,select,radio,checkbox,file,json',
])->validate(); ])->validate();
@@ -12,7 +12,7 @@
public function up(): void public function up(): void
{ {
// 管理员表 // 管理员表
Schema::create('auth_users', function (Blueprint $table) { Schema::create('auth_user', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('username', 50)->unique()->comment('用户名'); $table->string('username', 50)->unique()->comment('用户名');
$table->string('password')->comment('密码'); $table->string('password')->comment('密码');
@@ -32,7 +32,7 @@ public function up(): void
}); });
// 部门表 // 部门表
Schema::create('auth_departments', function (Blueprint $table) { Schema::create('auth_department', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('name', 100)->comment('部门名称'); $table->string('name', 100)->comment('部门名称');
$table->unsignedBigInteger('parent_id')->default(0)->comment('父部门ID'); $table->unsignedBigInteger('parent_id')->default(0)->comment('父部门ID');
@@ -48,7 +48,7 @@ public function up(): void
}); });
// 角色表 // 角色表
Schema::create('auth_roles', function (Blueprint $table) { Schema::create('auth_role', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('name', 50)->unique()->comment('角色名称'); $table->string('name', 50)->unique()->comment('角色名称');
$table->string('code', 50)->unique()->comment('角色编码'); $table->string('code', 50)->unique()->comment('角色编码');
@@ -62,7 +62,7 @@ public function up(): void
}); });
// 权限表 // 权限表
Schema::create('auth_permissions', function (Blueprint $table) { Schema::create('auth_permission', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('title', 100)->comment('权限标题'); $table->string('title', 100)->comment('权限标题');
$table->string('name', 100)->unique()->comment('权限编码'); $table->string('name', 100)->unique()->comment('权限编码');
@@ -114,9 +114,9 @@ public function down(): void
{ {
Schema::dropIfExists('auth_role_permission'); Schema::dropIfExists('auth_role_permission');
Schema::dropIfExists('auth_user_role'); Schema::dropIfExists('auth_user_role');
Schema::dropIfExists('auth_permissions'); Schema::dropIfExists('auth_permission');
Schema::dropIfExists('auth_roles'); Schema::dropIfExists('auth_role');
Schema::dropIfExists('auth_departments'); Schema::dropIfExists('auth_department');
Schema::dropIfExists('auth_users'); Schema::dropIfExists('auth_user');
} }
}; };
@@ -9,7 +9,7 @@
public function up() public function up()
{ {
// 系统配置表 // 系统配置表
Schema::create('system_configs', function (Blueprint $table) { Schema::create('system_setting', function (Blueprint $table) {
$table->comment('系统配置表'); $table->comment('系统配置表');
$table->id(); $table->id();
$table->string('group')->comment('配置分组'); $table->string('group')->comment('配置分组');
@@ -32,7 +32,7 @@ public function up()
}); });
// 系统日志表 // 系统日志表
Schema::create('system_logs', function (Blueprint $table) { Schema::create('system_log', function (Blueprint $table) {
$table->comment('系统日志表'); $table->comment('系统日志表');
$table->id(); $table->id();
$table->unsignedBigInteger('user_id')->nullable()->comment('用户ID'); $table->unsignedBigInteger('user_id')->nullable()->comment('用户ID');
@@ -58,7 +58,7 @@ public function up()
}); });
// 系统字典表 // 系统字典表
Schema::create('system_dictionaries', function (Blueprint $table) { Schema::create('system_dictionary', function (Blueprint $table) {
$table->comment('系统字典表'); $table->comment('系统字典表');
$table->id(); $table->id();
$table->string('name')->comment('字典名称'); $table->string('name')->comment('字典名称');
@@ -72,7 +72,7 @@ public function up()
}); });
// 系统字典项表 // 系统字典项表
Schema::create('system_dictionary_items', function (Blueprint $table) { Schema::create('system_dictionary_item', function (Blueprint $table) {
$table->comment('系统字典项表'); $table->comment('系统字典项表');
$table->id(); $table->id();
$table->unsignedBigInteger('dictionary_id')->comment('字典ID'); $table->unsignedBigInteger('dictionary_id')->comment('字典ID');
@@ -85,12 +85,12 @@ public function up()
$table->integer('sort')->default(0)->comment('排序'); $table->integer('sort')->default(0)->comment('排序');
$table->timestamps(); $table->timestamps();
$table->foreign('dictionary_id')->references('id')->on('system_dictionaries')->onDelete('cascade'); $table->foreign('dictionary_id')->references('id')->on('system_dictionary')->onDelete('cascade');
$table->index('dictionary_id'); $table->index('dictionary_id');
}); });
// 系统任务表 // 系统任务表
Schema::create('system_tasks', function (Blueprint $table) { Schema::create('system_task', function (Blueprint $table) {
$table->comment('系统任务表'); $table->comment('系统任务表');
$table->id(); $table->id();
$table->string('name')->comment('任务名称'); $table->string('name')->comment('任务名称');
@@ -115,32 +115,54 @@ public function up()
}); });
// 系统城市表 // 系统城市表
Schema::create('system_cities', function (Blueprint $table) { Schema::create('system_city', function (Blueprint $table) {
$table->comment('系统城市表'); $table->comment('系统城市表');
$table->id(); $table->id();
$table->unsignedBigInteger('parent_id')->default(0)->comment('父级ID'); $table->string('title')->comment('城市名称');
$table->string('name')->comment('城市名称');
$table->string('code')->unique()->comment('城市编码'); $table->string('code')->unique()->comment('城市编码');
$table->string('pinyin')->nullable()->comment('拼音'); $table->string('parent_code')->nullable()->comment('父级编码');
$table->string('pinyin_short')->nullable()->comment('拼音首字母');
$table->integer('level')->default(1)->comment('级别:1=省,2=市,3=区/县');
$table->integer('sort')->default(0)->comment('排序');
$table->boolean('status')->default(true)->comment('状态');
$table->timestamps(); $table->timestamps();
$table->index('parent_id');
$table->index('code'); $table->index('code');
$table->index('level'); $table->index('parent_code');
});
// 系统通知表
Schema::create('system_notification', function (Blueprint $table) {
$table->comment('系统通知表');
$table->id();
$table->unsignedBigInteger('user_id')->comment('用户ID');
$table->string('title')->comment('通知标题');
$table->text('content')->comment('通知内容');
$table->string('type')->default('info')->comment('通知类型:info, success, warning, error, task, system');
$table->string('category')->nullable()->comment('通知分类:system, task, message, reminder, announcement');
$table->json('data')->nullable()->comment('附加数据(JSON格式)');
$table->string('action_type')->nullable()->comment('操作类型:link, modal, none');
$table->text('action_data')->nullable()->comment('操作数据');
$table->boolean('is_read')->default(false)->comment('是否已读');
$table->timestamp('read_at')->nullable()->comment('阅读时间');
$table->boolean('sent_via_websocket')->default(false)->comment('是否已通过WebSocket发送');
$table->timestamp('sent_at')->nullable()->comment('发送时间');
$table->integer('retry_count')->default(0)->comment('重试次数');
$table->timestamps();
$table->softDeletes();
$table->index('user_id');
$table->index('is_read');
$table->index('type');
$table->index('category');
$table->index('created_at');
}); });
} }
public function down() public function down()
{ {
Schema::dropIfExists('system_dictionary_items'); Schema::dropIfExists('system_notification');
Schema::dropIfExists('system_dictionaries'); Schema::dropIfExists('system_dictionary_item');
Schema::dropIfExists('system_configs'); Schema::dropIfExists('system_dictionary');
Schema::dropIfExists('system_logs'); Schema::dropIfExists('system_setting');
Schema::dropIfExists('system_tasks'); Schema::dropIfExists('system_log');
Schema::dropIfExists('system_cities'); Schema::dropIfExists('system_task');
Schema::dropIfExists('system_city');
} }
}; };
@@ -1,43 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up()
{
// 系统通知表
Schema::create('system_notifications', function (Blueprint $table) {
$table->comment('系统通知表');
$table->id();
$table->unsignedBigInteger('user_id')->comment('用户ID');
$table->string('title')->comment('通知标题');
$table->text('content')->comment('通知内容');
$table->string('type')->default('info')->comment('通知类型:info, success, warning, error, task, system');
$table->string('category')->nullable()->comment('通知分类:system, task, message, reminder, announcement');
$table->json('data')->nullable()->comment('附加数据(JSON格式)');
$table->string('action_type')->nullable()->comment('操作类型:link, modal, none');
$table->text('action_data')->nullable()->comment('操作数据');
$table->boolean('is_read')->default(false)->comment('是否已读');
$table->timestamp('read_at')->nullable()->comment('阅读时间');
$table->boolean('sent_via_websocket')->default(false)->comment('是否已通过WebSocket发送');
$table->timestamp('sent_at')->nullable()->comment('发送时间');
$table->integer('retry_count')->default(0)->comment('重试次数');
$table->timestamps();
$table->softDeletes();
$table->index('user_id');
$table->index('is_read');
$table->index('type');
$table->index('category');
$table->index('created_at');
});
}
public function down()
{
Schema::dropIfExists('system_notifications');
}
};
+31 -31
View File
@@ -161,8 +161,8 @@ private function createPermissions(): void
'name' => 'auth.users', 'name' => 'auth.users',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为权限菜单的ID 'parent_id' => 0, // 稍后更新为权限菜单的ID
'path' => '/auth/users', 'path' => '/auth/user',
'component' => 'auth/users/index', 'component' => 'auth/user/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'UserOutlined', 'icon' => 'UserOutlined',
'hidden' => false, 'hidden' => false,
@@ -176,7 +176,7 @@ private function createPermissions(): void
'name' => 'auth.users.view', 'name' => 'auth.users.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.index', 'path' => 'admin.user.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -187,7 +187,7 @@ private function createPermissions(): void
'name' => 'auth.users.create', 'name' => 'auth.users.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.store', 'path' => 'admin.user.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -198,7 +198,7 @@ private function createPermissions(): void
'name' => 'auth.users.update', 'name' => 'auth.users.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.update', 'path' => 'admin.user.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -209,7 +209,7 @@ private function createPermissions(): void
'name' => 'auth.users.delete', 'name' => 'auth.users.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.destroy', 'path' => 'admin.user.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -220,7 +220,7 @@ private function createPermissions(): void
'name' => 'auth.users.batch-delete', 'name' => 'auth.users.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.batch-delete', 'path' => 'admin.user.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
@@ -231,7 +231,7 @@ private function createPermissions(): void
'name' => 'auth.users.export', 'name' => 'auth.users.export',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.export', 'path' => 'admin.user.export',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 6, 'sort' => 6,
@@ -242,7 +242,7 @@ private function createPermissions(): void
'name' => 'auth.users.import', 'name' => 'auth.users.import',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为用户管理菜单的ID 'parent_id' => 0, // 稍后更新为用户管理菜单的ID
'path' => 'admin.users.import', 'path' => 'admin.user.import',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 7, 'sort' => 7,
@@ -254,8 +254,8 @@ private function createPermissions(): void
'name' => 'auth.roles', 'name' => 'auth.roles',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为权限菜单的ID 'parent_id' => 0, // 稍后更新为权限菜单的ID
'path' => '/auth/roles', 'path' => '/auth/role',
'component' => 'auth/roles/index', 'component' => 'auth/role/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'UserFilled', 'icon' => 'UserFilled',
'hidden' => false, 'hidden' => false,
@@ -269,7 +269,7 @@ private function createPermissions(): void
'name' => 'auth.roles.view', 'name' => 'auth.roles.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为角色管理菜单的ID 'parent_id' => 0, // 稍后更新为角色管理菜单的ID
'path' => 'admin.roles.index', 'path' => 'admin.role.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -280,7 +280,7 @@ private function createPermissions(): void
'name' => 'auth.roles.create', 'name' => 'auth.roles.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为角色管理菜单的ID 'parent_id' => 0, // 稍后更新为角色管理菜单的ID
'path' => 'admin.roles.store', 'path' => 'admin.role.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -291,7 +291,7 @@ private function createPermissions(): void
'name' => 'auth.roles.update', 'name' => 'auth.roles.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为角色管理菜单的ID 'parent_id' => 0, // 稍后更新为角色管理菜单的ID
'path' => 'admin.roles.update', 'path' => 'admin.role.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -302,7 +302,7 @@ private function createPermissions(): void
'name' => 'auth.roles.delete', 'name' => 'auth.roles.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为角色管理菜单的ID 'parent_id' => 0, // 稍后更新为角色管理菜单的ID
'path' => 'admin.roles.destroy', 'path' => 'admin.role.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -313,7 +313,7 @@ private function createPermissions(): void
'name' => 'auth.roles.batch-delete', 'name' => 'auth.roles.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为角色管理菜单的ID 'parent_id' => 0, // 稍后更新为角色管理菜单的ID
'path' => 'admin.roles.batch-delete', 'path' => 'admin.role.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
@@ -324,7 +324,7 @@ private function createPermissions(): void
'name' => 'auth.roles.assign-permissions', 'name' => 'auth.roles.assign-permissions',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为角色管理菜单的ID 'parent_id' => 0, // 稍后更新为角色管理菜单的ID
'path' => 'admin.roles.assign-permissions', 'path' => 'admin.role.assign-permissions',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 6, 'sort' => 6,
@@ -336,8 +336,8 @@ private function createPermissions(): void
'name' => 'auth.permissions', 'name' => 'auth.permissions',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为权限菜单的ID 'parent_id' => 0, // 稍后更新为权限菜单的ID
'path' => '/auth/permissions', 'path' => '/auth/permission',
'component' => 'auth/permissions/index', 'component' => 'auth/permission/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'Lock', 'icon' => 'Lock',
'hidden' => false, 'hidden' => false,
@@ -351,7 +351,7 @@ private function createPermissions(): void
'name' => 'auth.permissions.view', 'name' => 'auth.permissions.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为权限管理菜单的ID 'parent_id' => 0, // 稍后更新为权限管理菜单的ID
'path' => 'admin.permissions.index', 'path' => 'admin.permission.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -362,7 +362,7 @@ private function createPermissions(): void
'name' => 'auth.permissions.create', 'name' => 'auth.permissions.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为权限管理菜单的ID 'parent_id' => 0, // 稍后更新为权限管理菜单的ID
'path' => 'admin.permissions.store', 'path' => 'admin.permission.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -373,7 +373,7 @@ private function createPermissions(): void
'name' => 'auth.permissions.update', 'name' => 'auth.permissions.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为权限管理菜单的ID 'parent_id' => 0, // 稍后更新为权限管理菜单的ID
'path' => 'admin.permissions.update', 'path' => 'admin.permission.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -384,7 +384,7 @@ private function createPermissions(): void
'name' => 'auth.permissions.delete', 'name' => 'auth.permissions.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为权限管理菜单的ID 'parent_id' => 0, // 稍后更新为权限管理菜单的ID
'path' => 'admin.permissions.destroy', 'path' => 'admin.permission.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -395,7 +395,7 @@ private function createPermissions(): void
'name' => 'auth.permissions.batch-delete', 'name' => 'auth.permissions.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为权限管理菜单的ID 'parent_id' => 0, // 稍后更新为权限管理菜单的ID
'path' => 'admin.permissions.batch-delete', 'path' => 'admin.permission.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
@@ -407,8 +407,8 @@ private function createPermissions(): void
'name' => 'auth.departments', 'name' => 'auth.departments',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为权限菜单的ID 'parent_id' => 0, // 稍后更新为权限菜单的ID
'path' => '/auth/departments', 'path' => '/auth/department',
'component' => 'auth/departments/index', 'component' => 'auth/department/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'OfficeBuilding', 'icon' => 'OfficeBuilding',
'hidden' => false, 'hidden' => false,
@@ -422,7 +422,7 @@ private function createPermissions(): void
'name' => 'auth.departments.view', 'name' => 'auth.departments.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为部门管理菜单的ID 'parent_id' => 0, // 稍后更新为部门管理菜单的ID
'path' => 'admin.departments.index', 'path' => 'admin.department.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -433,7 +433,7 @@ private function createPermissions(): void
'name' => 'auth.departments.create', 'name' => 'auth.departments.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为部门管理菜单的ID 'parent_id' => 0, // 稍后更新为部门管理菜单的ID
'path' => 'admin.departments.store', 'path' => 'admin.department.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -444,7 +444,7 @@ private function createPermissions(): void
'name' => 'auth.departments.update', 'name' => 'auth.departments.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为部门管理菜单的ID 'parent_id' => 0, // 稍后更新为部门管理菜单的ID
'path' => 'admin.departments.update', 'path' => 'admin.department.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -455,7 +455,7 @@ private function createPermissions(): void
'name' => 'auth.departments.delete', 'name' => 'auth.departments.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为部门管理菜单的ID 'parent_id' => 0, // 稍后更新为部门管理菜单的ID
'path' => 'admin.departments.destroy', 'path' => 'admin.department.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -466,7 +466,7 @@ private function createPermissions(): void
'name' => 'auth.departments.batch-delete', 'name' => 'auth.departments.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为部门管理菜单的ID 'parent_id' => 0, // 稍后更新为部门管理菜单的ID
'path' => 'admin.departments.batch-delete', 'path' => 'admin.department.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
+227 -127
View File
@@ -67,11 +67,11 @@ private function createSystemPermissions(): void
// 系统配置 // 系统配置
[ [
'title' => '系统配置', 'title' => '系统配置',
'name' => 'system.config', 'name' => 'system.setting',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为系统菜单的ID 'parent_id' => 0, // 稍后更新为系统菜单的ID
'path' => '/system/config', 'path' => '/system/setting',
'component' => 'system/config/index', 'component' => 'system/setting/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'SettingFilled', 'icon' => 'SettingFilled',
'hidden' => false, 'hidden' => false,
@@ -82,10 +82,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '查看配置', 'title' => '查看配置',
'name' => 'system.config.view', 'name' => 'system.setting.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统配置菜单的ID 'parent_id' => 0, // 稍后更新为系统配置菜单的ID
'path' => 'admin.config.index', 'path' => 'admin.setting.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -93,10 +93,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '创建配置', 'title' => '创建配置',
'name' => 'system.config.create', 'name' => 'system.setting.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统配置菜单的ID 'parent_id' => 0, // 稍后更新为系统配置菜单的ID
'path' => 'admin.config.store', 'path' => 'admin.setting.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -104,10 +104,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '编辑配置', 'title' => '编辑配置',
'name' => 'system.config.update', 'name' => 'system.setting.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统配置菜单的ID 'parent_id' => 0, // 稍后更新为系统配置菜单的ID
'path' => 'admin.config.update', 'path' => 'admin.setting.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -115,10 +115,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '删除配置', 'title' => '删除配置',
'name' => 'system.config.delete', 'name' => 'system.setting.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统配置菜单的ID 'parent_id' => 0, // 稍后更新为系统配置菜单的ID
'path' => 'admin.config.destroy', 'path' => 'admin.setting.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -126,10 +126,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '批量删除配置', 'title' => '批量删除配置',
'name' => 'system.config.batch-delete', 'name' => 'system.setting.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统配置菜单的ID 'parent_id' => 0, // 稍后更新为系统配置菜单的ID
'path' => 'admin.config.batch-delete', 'path' => 'admin.setting.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
@@ -139,11 +139,11 @@ private function createSystemPermissions(): void
// 系统日志 // 系统日志
[ [
'title' => '系统日志', 'title' => '系统日志',
'name' => 'system.logs', 'name' => 'system.log',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为系统菜单的ID 'parent_id' => 0, // 稍后更新为系统菜单的ID
'path' => '/system/logs', 'path' => '/system/log',
'component' => 'system/logs/index', 'component' => 'system/log/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'DocumentCopy', 'icon' => 'DocumentCopy',
'hidden' => false, 'hidden' => false,
@@ -154,10 +154,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '查看日志', 'title' => '查看日志',
'name' => 'system.logs.view', 'name' => 'system.log.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统日志菜单的ID 'parent_id' => 0, // 稍后更新为系统日志菜单的ID
'path' => 'admin.logs.index', 'path' => 'admin.log.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -165,10 +165,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '删除日志', 'title' => '删除日志',
'name' => 'system.logs.delete', 'name' => 'system.log.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统日志菜单的ID 'parent_id' => 0, // 稍后更新为系统日志菜单的ID
'path' => 'admin.logs.destroy', 'path' => 'admin.log.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -176,10 +176,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '批量删除日志', 'title' => '批量删除日志',
'name' => 'system.logs.batch-delete', 'name' => 'system.log.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统日志菜单的ID 'parent_id' => 0, // 稍后更新为系统日志菜单的ID
'path' => 'admin.logs.batch-delete', 'path' => 'admin.log.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -187,10 +187,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '导出日志', 'title' => '导出日志',
'name' => 'system.logs.export', 'name' => 'system.log.export',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为系统日志菜单的ID 'parent_id' => 0, // 稍后更新为系统日志菜单的ID
'path' => 'admin.logs.export', 'path' => 'admin.log.export',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -200,11 +200,11 @@ private function createSystemPermissions(): void
// 数据字典 // 数据字典
[ [
'title' => '数据字典', 'title' => '数据字典',
'name' => 'system.dictionaries', 'name' => 'system.dictionary',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为系统菜单的ID 'parent_id' => 0, // 稍后更新为系统菜单的ID
'path' => '/system/dictionaries', 'path' => '/system/dictionary',
'component' => 'system/dictionaries/index', 'component' => 'system/dictionary/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'Notebook', 'icon' => 'Notebook',
'hidden' => false, 'hidden' => false,
@@ -215,10 +215,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '查看字典', 'title' => '查看字典',
'name' => 'system.dictionaries.view', 'name' => 'system.dictionary.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为数据字典菜单的ID 'parent_id' => 0, // 稍后更新为数据字典菜单的ID
'path' => 'admin.dictionaries.index', 'path' => 'admin.dictionary.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -226,10 +226,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '创建字典', 'title' => '创建字典',
'name' => 'system.dictionaries.create', 'name' => 'system.dictionary.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为数据字典菜单的ID 'parent_id' => 0, // 稍后更新为数据字典菜单的ID
'path' => 'admin.dictionaries.store', 'path' => 'admin.dictionary.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -237,10 +237,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '编辑字典', 'title' => '编辑字典',
'name' => 'system.dictionaries.update', 'name' => 'system.dictionary.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为数据字典菜单的ID 'parent_id' => 0, // 稍后更新为数据字典菜单的ID
'path' => 'admin.dictionaries.update', 'path' => 'admin.dictionary.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -248,10 +248,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '删除字典', 'title' => '删除字典',
'name' => 'system.dictionaries.delete', 'name' => 'system.dictionary.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为数据字典菜单的ID 'parent_id' => 0, // 稍后更新为数据字典菜单的ID
'path' => 'admin.dictionaries.destroy', 'path' => 'admin.dictionary.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -259,10 +259,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '批量删除字典', 'title' => '批量删除字典',
'name' => 'system.dictionaries.batch-delete', 'name' => 'system.dictionary.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为数据字典菜单的ID 'parent_id' => 0, // 稍后更新为数据字典菜单的ID
'path' => 'admin.dictionaries.batch-delete', 'path' => 'admin.dictionary.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
@@ -272,11 +272,11 @@ private function createSystemPermissions(): void
// 定时任务 // 定时任务
[ [
'title' => '定时任务', 'title' => '定时任务',
'name' => 'system.tasks', 'name' => 'system.task',
'type' => 'menu', 'type' => 'menu',
'parent_id' => 0, // 稍后更新为系统菜单的ID 'parent_id' => 0, // 稍后更新为系统菜单的ID
'path' => '/system/tasks', 'path' => '/system/task',
'component' => 'system/tasks/index', 'component' => 'system/task/index',
'meta' => json_encode([ 'meta' => json_encode([
'icon' => 'Timer', 'icon' => 'Timer',
'hidden' => false, 'hidden' => false,
@@ -287,10 +287,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '查看任务', 'title' => '查看任务',
'name' => 'system.tasks.view', 'name' => 'system.task.view',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.index', 'path' => 'admin.task.index',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 1, 'sort' => 1,
@@ -298,10 +298,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '创建任务', 'title' => '创建任务',
'name' => 'system.tasks.create', 'name' => 'system.task.create',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.store', 'path' => 'admin.task.store',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 2, 'sort' => 2,
@@ -309,10 +309,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '编辑任务', 'title' => '编辑任务',
'name' => 'system.tasks.update', 'name' => 'system.task.update',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.update', 'path' => 'admin.task.update',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 3, 'sort' => 3,
@@ -320,10 +320,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '删除任务', 'title' => '删除任务',
'name' => 'system.tasks.delete', 'name' => 'system.task.delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.destroy', 'path' => 'admin.task.destroy',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 4, 'sort' => 4,
@@ -331,10 +331,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '批量删除任务', 'title' => '批量删除任务',
'name' => 'system.tasks.batch-delete', 'name' => 'system.task.batch-delete',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.batch-delete', 'path' => 'admin.task.batch-delete',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 5, 'sort' => 5,
@@ -342,10 +342,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '执行任务', 'title' => '执行任务',
'name' => 'system.tasks.execute', 'name' => 'system.task.execute',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.execute', 'path' => 'admin.task.execute',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 6, 'sort' => 6,
@@ -353,10 +353,10 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '启用任务', 'title' => '启用任务',
'name' => 'system.tasks.enable', 'name' => 'system.task.enable',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.enable', 'path' => 'admin.task.enable',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 7, 'sort' => 7,
@@ -364,15 +364,87 @@ private function createSystemPermissions(): void
], ],
[ [
'title' => '禁用任务', 'title' => '禁用任务',
'name' => 'system.tasks.disable', 'name' => 'system.task.disable',
'type' => 'button', 'type' => 'button',
'parent_id' => 0, // 稍后更新为定时任务菜单的ID 'parent_id' => 0, // 稍后更新为定时任务菜单的ID
'path' => 'admin.tasks.disable', 'path' => 'admin.task.disable',
'component' => null, 'component' => null,
'meta' => null, 'meta' => null,
'sort' => 8, 'sort' => 8,
'status' => 1, 'status' => 1,
], ],
// 城市管理
[
'title' => '城市管理',
'name' => 'system.city',
'type' => 'menu',
'parent_id' => 0, // 稍后更新为系统菜单的ID
'path' => '/system/city',
'component' => 'system/city/index',
'meta' => json_encode([
'icon' => 'EnvironmentOutlined',
'hidden' => false,
'hiddenBreadcrumb' => false,
]),
'sort' => 5,
'status' => 1,
],
[
'title' => '查看城市',
'name' => 'system.city.view',
'type' => 'button',
'parent_id' => 0, // 稍后更新为城市管理菜单的ID
'path' => 'admin.city.index',
'component' => null,
'meta' => null,
'sort' => 1,
'status' => 1,
],
[
'title' => '创建城市',
'name' => 'system.city.create',
'type' => 'button',
'parent_id' => 0, // 稍后更新为城市管理菜单的ID
'path' => 'admin.city.store',
'component' => null,
'meta' => null,
'sort' => 2,
'status' => 1,
],
[
'title' => '编辑城市',
'name' => 'system.city.update',
'type' => 'button',
'parent_id' => 0, // 稍后更新为城市管理菜单的ID
'path' => 'admin.city.update',
'component' => null,
'meta' => null,
'sort' => 3,
'status' => 1,
],
[
'title' => '删除城市',
'name' => 'system.city.delete',
'type' => 'button',
'parent_id' => 0, // 稍后更新为城市管理菜单的ID
'path' => 'admin.city.destroy',
'component' => null,
'meta' => null,
'sort' => 4,
'status' => 1,
],
[
'title' => '批量删除城市',
'name' => 'system.city.batch-delete',
'type' => 'button',
'parent_id' => 0, // 稍后更新为城市管理菜单的ID
'path' => 'admin.city.batch-delete',
'component' => null,
'meta' => null,
'sort' => 5,
'status' => 1,
],
]; ];
foreach ($permissions as $permission) { foreach ($permissions as $permission) {
@@ -394,128 +466,156 @@ private function updateParentIds(): void
$systemMenu = $permissions->where('name', 'system')->first(); $systemMenu = $permissions->where('name', 'system')->first();
// 获取系统子菜单ID // 获取系统子菜单ID
$configMenu = $permissions->where('name', 'system.config')->first(); $settingMenu = $permissions->where('name', 'system.setting')->first();
$logsMenu = $permissions->where('name', 'system.logs')->first(); $logMenu = $permissions->where('name', 'system.log')->first();
$dictionariesMenu = $permissions->where('name', 'system.dictionaries')->first(); $dictionaryMenu = $permissions->where('name', 'system.dictionary')->first();
$tasksMenu = $permissions->where('name', 'system.tasks')->first(); $taskMenu = $permissions->where('name', 'system.task')->first();
$cityMenu = $permissions->where('name', 'system.city')->first();
// 更新系统子菜单的parent_id // 更新系统子菜单的parent_id
if ($systemMenu) { if ($systemMenu) {
if ($configMenu) { if ($settingMenu) {
$configMenu->update(['parent_id' => $systemMenu->id]); $settingMenu->update(['parent_id' => $systemMenu->id]);
} }
if ($logsMenu) { if ($logMenu) {
$logsMenu->update(['parent_id' => $systemMenu->id]); $logMenu->update(['parent_id' => $systemMenu->id]);
} }
if ($dictionariesMenu) { if ($dictionaryMenu) {
$dictionariesMenu->update(['parent_id' => $systemMenu->id]); $dictionaryMenu->update(['parent_id' => $systemMenu->id]);
} }
if ($tasksMenu) { if ($taskMenu) {
$tasksMenu->update(['parent_id' => $systemMenu->id]); $taskMenu->update(['parent_id' => $systemMenu->id]);
}
if ($cityMenu) {
$cityMenu->update(['parent_id' => $systemMenu->id]);
} }
} }
// 更新按钮权限的parent_id - 系统配置 // 更新按钮权限的parent_id - 系统配置
$configViewBtn = $permissions->where('name', 'system.config.view')->first(); $settingViewBtn = $permissions->where('name', 'system.setting.view')->first();
$configCreateBtn = $permissions->where('name', 'system.config.create')->first(); $settingCreateBtn = $permissions->where('name', 'system.setting.create')->first();
$configUpdateBtn = $permissions->where('name', 'system.config.update')->first(); $settingUpdateBtn = $permissions->where('name', 'system.setting.update')->first();
$configDeleteBtn = $permissions->where('name', 'system.config.delete')->first(); $settingDeleteBtn = $permissions->where('name', 'system.setting.delete')->first();
$configBatchDeleteBtn = $permissions->where('name', 'system.config.batch-delete')->first(); $settingBatchDeleteBtn = $permissions->where('name', 'system.setting.batch-delete')->first();
if ($configMenu) { if ($settingMenu) {
if ($configViewBtn) { if ($settingViewBtn) {
$configViewBtn->update(['parent_id' => $configMenu->id]); $settingViewBtn->update(['parent_id' => $settingMenu->id]);
} }
if ($configCreateBtn) { if ($settingCreateBtn) {
$configCreateBtn->update(['parent_id' => $configMenu->id]); $settingCreateBtn->update(['parent_id' => $settingMenu->id]);
} }
if ($configUpdateBtn) { if ($settingUpdateBtn) {
$configUpdateBtn->update(['parent_id' => $configMenu->id]); $settingUpdateBtn->update(['parent_id' => $settingMenu->id]);
} }
if ($configDeleteBtn) { if ($settingDeleteBtn) {
$configDeleteBtn->update(['parent_id' => $configMenu->id]); $settingDeleteBtn->update(['parent_id' => $settingMenu->id]);
} }
if ($configBatchDeleteBtn) { if ($settingBatchDeleteBtn) {
$configBatchDeleteBtn->update(['parent_id' => $configMenu->id]); $settingBatchDeleteBtn->update(['parent_id' => $settingMenu->id]);
} }
} }
// 更新按钮权限的parent_id - 系统日志 // 更新按钮权限的parent_id - 系统日志
$logsViewBtn = $permissions->where('name', 'system.logs.view')->first(); $logViewBtn = $permissions->where('name', 'system.log.view')->first();
$logsDeleteBtn = $permissions->where('name', 'system.logs.delete')->first(); $logDeleteBtn = $permissions->where('name', 'system.log.delete')->first();
$logsBatchDeleteBtn = $permissions->where('name', 'system.logs.batch-delete')->first(); $logBatchDeleteBtn = $permissions->where('name', 'system.log.batch-delete')->first();
$logsExportBtn = $permissions->where('name', 'system.logs.export')->first(); $logExportBtn = $permissions->where('name', 'system.log.export')->first();
if ($logsMenu) { if ($logMenu) {
if ($logsViewBtn) { if ($logViewBtn) {
$logsViewBtn->update(['parent_id' => $logsMenu->id]); $logViewBtn->update(['parent_id' => $logMenu->id]);
} }
if ($logsDeleteBtn) { if ($logDeleteBtn) {
$logsDeleteBtn->update(['parent_id' => $logsMenu->id]); $logDeleteBtn->update(['parent_id' => $logMenu->id]);
} }
if ($logsBatchDeleteBtn) { if ($logBatchDeleteBtn) {
$logsBatchDeleteBtn->update(['parent_id' => $logsMenu->id]); $logBatchDeleteBtn->update(['parent_id' => $logMenu->id]);
} }
if ($logsExportBtn) { if ($logExportBtn) {
$logsExportBtn->update(['parent_id' => $logsMenu->id]); $logExportBtn->update(['parent_id' => $logMenu->id]);
} }
} }
// 更新按钮权限的parent_id - 数据字典 // 更新按钮权限的parent_id - 数据字典
$dictViewBtn = $permissions->where('name', 'system.dictionaries.view')->first(); $dictViewBtn = $permissions->where('name', 'system.dictionary.view')->first();
$dictCreateBtn = $permissions->where('name', 'system.dictionaries.create')->first(); $dictCreateBtn = $permissions->where('name', 'system.dictionary.create')->first();
$dictUpdateBtn = $permissions->where('name', 'system.dictionaries.update')->first(); $dictUpdateBtn = $permissions->where('name', 'system.dictionary.update')->first();
$dictDeleteBtn = $permissions->where('name', 'system.dictionaries.delete')->first(); $dictDeleteBtn = $permissions->where('name', 'system.dictionary.delete')->first();
$dictBatchDeleteBtn = $permissions->where('name', 'system.dictionaries.batch-delete')->first(); $dictBatchDeleteBtn = $permissions->where('name', 'system.dictionary.batch-delete')->first();
if ($dictionariesMenu) { if ($dictionaryMenu) {
if ($dictViewBtn) { if ($dictViewBtn) {
$dictViewBtn->update(['parent_id' => $dictionariesMenu->id]); $dictViewBtn->update(['parent_id' => $dictionaryMenu->id]);
} }
if ($dictCreateBtn) { if ($dictCreateBtn) {
$dictCreateBtn->update(['parent_id' => $dictionariesMenu->id]); $dictCreateBtn->update(['parent_id' => $dictionaryMenu->id]);
} }
if ($dictUpdateBtn) { if ($dictUpdateBtn) {
$dictUpdateBtn->update(['parent_id' => $dictionariesMenu->id]); $dictUpdateBtn->update(['parent_id' => $dictionaryMenu->id]);
} }
if ($dictDeleteBtn) { if ($dictDeleteBtn) {
$dictDeleteBtn->update(['parent_id' => $dictionariesMenu->id]); $dictDeleteBtn->update(['parent_id' => $dictionaryMenu->id]);
} }
if ($dictBatchDeleteBtn) { if ($dictBatchDeleteBtn) {
$dictBatchDeleteBtn->update(['parent_id' => $dictionariesMenu->id]); $dictBatchDeleteBtn->update(['parent_id' => $dictionaryMenu->id]);
} }
} }
// 更新按钮权限的parent_id - 定时任务 // 更新按钮权限的parent_id - 定时任务
$taskViewBtn = $permissions->where('name', 'system.tasks.view')->first(); $taskViewBtn = $permissions->where('name', 'system.task.view')->first();
$taskCreateBtn = $permissions->where('name', 'system.tasks.create')->first(); $taskCreateBtn = $permissions->where('name', 'system.task.create')->first();
$taskUpdateBtn = $permissions->where('name', 'system.tasks.update')->first(); $taskUpdateBtn = $permissions->where('name', 'system.task.update')->first();
$taskDeleteBtn = $permissions->where('name', 'system.tasks.delete')->first(); $taskDeleteBtn = $permissions->where('name', 'system.task.delete')->first();
$taskBatchDeleteBtn = $permissions->where('name', 'system.tasks.batch-delete')->first(); $taskBatchDeleteBtn = $permissions->where('name', 'system.task.batch-delete')->first();
$taskExecuteBtn = $permissions->where('name', 'system.tasks.execute')->first(); $taskExecuteBtn = $permissions->where('name', 'system.task.execute')->first();
$taskEnableBtn = $permissions->where('name', 'system.tasks.enable')->first(); $taskEnableBtn = $permissions->where('name', 'system.task.enable')->first();
$taskDisableBtn = $permissions->where('name', 'system.tasks.disable')->first(); $taskDisableBtn = $permissions->where('name', 'system.task.disable')->first();
if ($tasksMenu) { if ($taskMenu) {
if ($taskViewBtn) { if ($taskViewBtn) {
$taskViewBtn->update(['parent_id' => $tasksMenu->id]); $taskViewBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskCreateBtn) { if ($taskCreateBtn) {
$taskCreateBtn->update(['parent_id' => $tasksMenu->id]); $taskCreateBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskUpdateBtn) { if ($taskUpdateBtn) {
$taskUpdateBtn->update(['parent_id' => $tasksMenu->id]); $taskUpdateBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskDeleteBtn) { if ($taskDeleteBtn) {
$taskDeleteBtn->update(['parent_id' => $tasksMenu->id]); $taskDeleteBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskBatchDeleteBtn) { if ($taskBatchDeleteBtn) {
$taskBatchDeleteBtn->update(['parent_id' => $tasksMenu->id]); $taskBatchDeleteBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskExecuteBtn) { if ($taskExecuteBtn) {
$taskExecuteBtn->update(['parent_id' => $tasksMenu->id]); $taskExecuteBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskEnableBtn) { if ($taskEnableBtn) {
$taskEnableBtn->update(['parent_id' => $tasksMenu->id]); $taskEnableBtn->update(['parent_id' => $taskMenu->id]);
} }
if ($taskDisableBtn) { if ($taskDisableBtn) {
$taskDisableBtn->update(['parent_id' => $tasksMenu->id]); $taskDisableBtn->update(['parent_id' => $taskMenu->id]);
}
}
// 更新按钮权限的parent_id - 城市管理
$cityViewBtn = $permissions->where('name', 'system.city.view')->first();
$cityCreateBtn = $permissions->where('name', 'system.city.create')->first();
$cityUpdateBtn = $permissions->where('name', 'system.city.update')->first();
$cityDeleteBtn = $permissions->where('name', 'system.city.delete')->first();
$cityBatchDeleteBtn = $permissions->where('name', 'system.city.batch-delete')->first();
if ($cityMenu) {
if ($cityViewBtn) {
$cityViewBtn->update(['parent_id' => $cityMenu->id]);
}
if ($cityCreateBtn) {
$cityCreateBtn->update(['parent_id' => $cityMenu->id]);
}
if ($cityUpdateBtn) {
$cityUpdateBtn->update(['parent_id' => $cityMenu->id]);
}
if ($cityDeleteBtn) {
$cityDeleteBtn->update(['parent_id' => $cityMenu->id]);
}
if ($cityBatchDeleteBtn) {
$cityBatchDeleteBtn->update(['parent_id' => $cityMenu->id]);
} }
} }
} }
@@ -526,7 +626,7 @@ private function updateParentIds(): void
private function createSystemDictionaries(): void private function createSystemDictionaries(): void
{ {
// 创建字典类型 // 创建字典类型
$dictionaries = [ $dictionary = [
[ [
'name' => '用户状态', 'name' => '用户状态',
'code' => 'user_status', 'code' => 'user_status',
@@ -593,7 +693,7 @@ private function createSystemDictionaries(): void
], ],
]; ];
foreach ($dictionaries as $dictionary) { foreach ($dictionary as $dictionary) {
$dict = Dictionary::create($dictionary); $dict = Dictionary::create($dictionary);
$this->createDictionaryItems($dict); $this->createDictionaryItems($dict);
} }
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -49,7 +49,7 @@ ## 技术栈
## 数据库表结构 ## 数据库表结构
### system_configs (系统配置表) ### system_setting (系统配置表)
- `id`: 主键 - `id`: 主键
- `group`: 配置分组(如:system, site, upload - `group`: 配置分组(如:system, site, upload
- `key`: 配置键(唯一) - `key`: 配置键(唯一)
@@ -1270,7 +1270,7 @@ ### 2. 数据库索引
- `system_logs`: `user_id`, `username`, `module`, `status`, `created_at` - `system_logs`: `user_id`, `username`, `module`, `status`, `created_at`
- `system_dictionaries`: `code`, `status` - `system_dictionaries`: `code`, `status`
- `system_dictionary_items`: `dictionary_id`, `status` - `system_dictionary_items`: `dictionary_id`, `status`
- `system_configs`: `group`, `key`, `status` - `system_setting`: `group`, `key`, `status`
### 3. 分页查询 ### 3. 分页查询
+61 -61
View File
@@ -35,72 +35,72 @@ export default {
}, },
// 用户管理 // 用户管理
users: { user: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("auth/users", { params }); return await request.get("auth/user", { params });
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`auth/users/${id}`); return await request.get(`auth/user/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("auth/users", params); return await request.post("auth/user", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`auth/users/${id}`, params); return await request.put(`auth/user/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`auth/users/${id}`); return await request.delete(`auth/user/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post("auth/users/batch-delete", params); return await request.post("auth/user/batch-delete", params);
}, },
}, },
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post("auth/users/batch-status", params); return await request.post("auth/user/batch-status", params);
}, },
}, },
batchDepartment: { batchDepartment: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"auth/users/batch-department", "auth/user/batch-department",
params, params,
); );
}, },
}, },
batchRoles: { batchRoles: {
post: async function (params) { post: async function (params) {
return await request.post("auth/users/batch-roles", params); return await request.post("auth/user/batch-roles", params);
}, },
}, },
export: { export: {
post: async function (params) { post: async function (params) {
return await request.post("auth/users/export", params, { return await request.post("auth/user/export", params, {
responseType: "blob", responseType: "blob",
}); });
}, },
}, },
import: { import: {
post: async function (formData) { post: async function (formData) {
return await request.post("auth/users/import", formData, { return await request.post("auth/user/import", formData, {
headers: { "Content-Type": "multipart/form-data" }, headers: { "Content-Type": "multipart/form-data" },
}); });
}, },
}, },
downloadTemplate: { downloadTemplate: {
get: async function () { get: async function () {
return await request.get("auth/users/download-template", { return await request.get("auth/user/download-template", {
responseType: "blob", responseType: "blob",
}); });
}, },
@@ -108,28 +108,28 @@ export default {
}, },
// 在线用户管理 // 在线用户管理
onlineUsers: { onlineUser: {
count: { count: {
get: async function () { get: async function () {
return await request.get("auth/online-users/count"); return await request.get("auth/online-user/count");
}, },
}, },
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("auth/online-users", { params }); return await request.get("auth/online-user", { params });
}, },
}, },
sessions: { sessions: {
get: async function (userId) { get: async function (userId) {
return await request.get( return await request.get(
`auth/online-users/${userId}/sessions`, `auth/online-user/${userId}/sessions`,
); );
}, },
}, },
offline: { offline: {
post: async function (userId, params) { post: async function (userId, params) {
return await request.post( return await request.post(
`auth/online-users/${userId}/offline`, `auth/online-user/${userId}/offline`,
params, params,
); );
}, },
@@ -137,92 +137,92 @@ export default {
offlineAll: { offlineAll: {
post: async function (userId) { post: async function (userId) {
return await request.post( return await request.post(
`auth/online-users/${userId}/offline-all`, `auth/online-user/${userId}/offline-all`,
); );
}, },
}, },
}, },
// 角色管理 // 角色管理
roles: { role: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("auth/roles", { params }); return await request.get("auth/role", { params });
}, },
}, },
all: { all: {
get: async function () { get: async function () {
return await request.get("auth/roles/all"); return await request.get("auth/role/all");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`auth/roles/${id}`); return await request.get(`auth/role/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("auth/roles", params); return await request.post("auth/role", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`auth/roles/${id}`, params); return await request.put(`auth/role/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`auth/roles/${id}`); return await request.delete(`auth/role/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post("auth/roles/batch-delete", params); return await request.post("auth/role/batch-delete", params);
}, },
}, },
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post("auth/roles/batch-status", params); return await request.post("auth/role/batch-status", params);
}, },
}, },
permissions: { permissions: {
get: async function (id) { get: async function (id) {
return await request.get(`auth/roles/${id}/permissions`); return await request.get(`auth/role/${id}/permissions`);
}, },
post: async function (id, params) { post: async function (id, params) {
return await request.post( return await request.post(
`auth/roles/${id}/permissions`, `auth/role/${id}/permissions`,
params, params,
); );
}, },
}, },
copy: { copy: {
post: async function (id, params) { post: async function (id, params) {
return await request.post(`auth/roles/${id}/copy`, params); return await request.post(`auth/role/${id}/copy`, params);
}, },
}, },
batchCopy: { batchCopy: {
post: async function (params) { post: async function (params) {
return await request.post("auth/roles/batch-copy", params); return await request.post("auth/role/batch-copy", params);
}, },
}, },
export: { export: {
post: async function (params) { post: async function (params) {
return await request.post("auth/roles/export", params, { return await request.post("auth/role/export", params, {
responseType: "blob", responseType: "blob",
}); });
}, },
}, },
import: { import: {
post: async function (formData) { post: async function (formData) {
return await request.post("auth/roles/import", formData, { return await request.post("auth/role/import", formData, {
headers: { "Content-Type": "multipart/form-data" }, headers: { "Content-Type": "multipart/form-data" },
}); });
}, },
}, },
downloadTemplate: { downloadTemplate: {
get: async function () { get: async function () {
return await request.get("auth/roles/download-template", { return await request.get("auth/role/download-template", {
responseType: "blob", responseType: "blob",
}); });
}, },
@@ -230,46 +230,46 @@ export default {
}, },
// 权限管理 // 权限管理
permissions: { permission: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("auth/permissions", { params }); return await request.get("auth/permission", { params });
}, },
}, },
tree: { tree: {
get: async function () { get: async function () {
return await request.get("auth/permissions/tree"); return await request.get("auth/permission/tree");
}, },
}, },
menu: { menu: {
get: async function () { get: async function () {
return await request.get("auth/permissions/menu"); return await request.get("auth/permission/menu");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`auth/permissions/${id}`); return await request.get(`auth/permission/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("auth/permissions", params); return await request.post("auth/permission", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`auth/permissions/${id}`, params); return await request.put(`auth/permission/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`auth/permissions/${id}`); return await request.delete(`auth/permission/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"auth/permissions/batch-delete", "auth/permission/batch-delete",
params, params,
); );
}, },
@@ -277,28 +277,28 @@ export default {
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"auth/permissions/batch-status", "auth/permission/batch-status",
params, params,
); );
}, },
}, },
export: { export: {
post: async function (params) { post: async function (params) {
return await request.post("auth/permissions/export", params, { return await request.post("auth/permission/export", params, {
responseType: "blob", responseType: "blob",
}); });
}, },
}, },
import: { import: {
post: async function (formData) { post: async function (formData) {
return await request.post("auth/permissions/import", formData, { return await request.post("auth/permission/import", formData, {
headers: { "Content-Type": "multipart/form-data" }, headers: { "Content-Type": "multipart/form-data" },
}); });
}, },
}, },
downloadTemplate: { downloadTemplate: {
get: async function () { get: async function () {
return await request.get("auth/permissions/download-template", { return await request.get("auth/permission/download-template", {
responseType: "blob", responseType: "blob",
}); });
}, },
@@ -306,46 +306,46 @@ export default {
}, },
// 部门管理 // 部门管理
departments: { department: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("auth/departments", { params }); return await request.get("auth/department", { params });
}, },
}, },
tree: { tree: {
get: async function (params) { get: async function (params) {
return await request.get("auth/departments/tree", { params }); return await request.get("auth/department/tree", { params });
}, },
}, },
all: { all: {
get: async function () { get: async function () {
return await request.get("auth/departments/all"); return await request.get("auth/department/all");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`auth/departments/${id}`); return await request.get(`auth/department/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("auth/departments", params); return await request.post("auth/department", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`auth/departments/${id}`, params); return await request.put(`auth/department/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`auth/departments/${id}`); return await request.delete(`auth/department/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"auth/departments/batch-delete", "auth/department/batch-delete",
params, params,
); );
}, },
@@ -353,28 +353,28 @@ export default {
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"auth/departments/batch-status", "auth/department/batch-status",
params, params,
); );
}, },
}, },
export: { export: {
post: async function (params) { post: async function (params) {
return await request.post("auth/departments/export", params, { return await request.post("auth/department/export", params, {
responseType: "blob", responseType: "blob",
}); });
}, },
}, },
import: { import: {
post: async function (formData) { post: async function (formData) {
return await request.post("auth/departments/import", formData, { return await request.post("auth/department/import", formData, {
headers: { "Content-Type": "multipart/form-data" }, headers: { "Content-Type": "multipart/form-data" },
}); });
}, },
}, },
downloadTemplate: { downloadTemplate: {
get: async function () { get: async function () {
return await request.get("auth/departments/download-template", { return await request.get("auth/department/download-template", {
responseType: "blob", responseType: "blob",
}); });
}, },
+90 -90
View File
@@ -2,46 +2,46 @@ import request from "@/utils/request";
export default { export default {
// 系统配置管理 // 系统配置管理
configs: { config: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/configs", { params }); return await request.get("system/setting", { params });
}, },
}, },
groups: { groups: {
get: async function () { get: async function () {
return await request.get("system/configs/groups"); return await request.get("system/setting/groups");
}, },
}, },
all: { all: {
get: async function (params) { get: async function (params) {
return await request.get("system/configs/all", { params }); return await request.get("system/setting/all", { params });
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/configs/${id}`); return await request.get(`system/setting/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("system/configs", params); return await request.post("system/setting", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`system/configs/${id}`, params); return await request.put(`system/setting/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/configs/${id}`); return await request.delete(`system/setting/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/configs/batch-delete", "system/setting/batch-delete",
params, params,
); );
}, },
@@ -49,7 +49,7 @@ export default {
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/configs/batch-status", "system/setting/batch-status",
params, params,
); );
}, },
@@ -57,35 +57,35 @@ export default {
}, },
// 操作日志管理 // 操作日志管理
logs: { log: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/logs", { params }); return await request.get("system/log", { params });
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/logs/${id}`); return await request.get(`system/log/${id}`);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/logs/${id}`); return await request.delete(`system/log/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post("system/logs/batch-delete", params); return await request.post("system/log/batch-delete", params);
}, },
}, },
clear: { clear: {
post: async function (params) { post: async function (params) {
return await request.post("system/logs/clear", params); return await request.post("system/log/clear", params);
}, },
}, },
export: { export: {
get: async function (params) { get: async function (params) {
return await request.get("system/logs/export", { return await request.get("system/log/export", {
params, params,
responseType: "blob", responseType: "blob",
}); });
@@ -93,47 +93,47 @@ export default {
}, },
statistics: { statistics: {
get: async function (params) { get: async function (params) {
return await request.get("system/logs/statistics", { params }); return await request.get("system/log/statistics", { params });
}, },
}, },
}, },
// 数据字典管理 // 数据字典管理
dictionaries: { dictionary: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/dictionaries", { params }); return await request.get("system/dictionary", { params });
}, },
}, },
all: { all: {
get: async function () { get: async function () {
return await request.get("system/dictionaries/all"); return await request.get("system/dictionary/all");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/dictionaries/${id}`); return await request.get(`system/dictionary/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("system/dictionaries", params); return await request.post("system/dictionary", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`system/dictionaries/${id}`, params); return await request.put(`system/dictionary/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/dictionaries/${id}`); return await request.delete(`system/dictionary/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/dictionaries/batch-delete", "system/dictionary/batch-delete",
params, params,
); );
}, },
@@ -141,7 +141,7 @@ export default {
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/dictionaries/batch-status", "system/dictionary/batch-status",
params, params,
); );
}, },
@@ -149,7 +149,7 @@ export default {
items: { items: {
all: { all: {
get: async function (code) { get: async function (code) {
return await request.get(`system/dictionaries/code`, { return await request.get(`system/dictionary/code`, {
params: { code }, params: { code },
}); });
}, },
@@ -158,44 +158,44 @@ export default {
}, },
// 数据字典项管理 // 数据字典项管理
dictionaryItems: { dictionaryItem: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/dictionary-items", { params }); return await request.get("system/dictionary-item", { params });
}, },
}, },
all: { all: {
get: async function () { get: async function () {
return await request.get("system/dictionary-items/all"); return await request.get("system/dictionary-item/all");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/dictionary-items/${id}`); return await request.get(`system/dictionary-item/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("system/dictionary-items", params); return await request.post("system/dictionary-item", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put( return await request.put(
`system/dictionary-items/${id}`, `system/dictionary-item/${id}`,
params, params,
); );
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/dictionary-items/${id}`); return await request.delete(`system/dictionary-item/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/dictionary-items/batch-delete", "system/dictionary-item/batch-delete",
params, params,
); );
}, },
@@ -203,7 +203,7 @@ export default {
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/dictionary-items/batch-status", "system/dictionary-item/batch-status",
params, params,
); );
}, },
@@ -211,119 +211,119 @@ export default {
}, },
// 任务管理 // 任务管理
tasks: { task: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/tasks", { params }); return await request.get("system/task", { params });
}, },
}, },
all: { all: {
get: async function () { get: async function () {
return await request.get("system/tasks/all"); return await request.get("system/task/all");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/tasks/${id}`); return await request.get(`system/task/${id}`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("system/tasks", params); return await request.post("system/task", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`system/tasks/${id}`, params); return await request.put(`system/task/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/tasks/${id}`); return await request.delete(`system/task/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post("system/tasks/batch-delete", params); return await request.post("system/task/batch-delete", params);
}, },
}, },
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post("system/tasks/batch-status", params); return await request.post("system/task/batch-status", params);
}, },
}, },
run: { run: {
post: async function (id) { post: async function (id) {
return await request.post(`system/tasks/${id}/run`); return await request.post(`system/task/${id}/run`);
}, },
}, },
statistics: { statistics: {
get: async function () { get: async function () {
return await request.get("system/tasks/statistics"); return await request.get("system/task/statistics");
}, },
}, },
}, },
// 城市数据管理 // 城市数据管理
cities: { city: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/cities", { params }); return await request.get("system/city", { params });
}, },
}, },
tree: { tree: {
get: async function () { get: async function () {
return await request.get("system/cities/tree"); return await request.get("system/city/tree");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/cities/${id}`); return await request.get(`system/city/${id}`);
}, },
}, },
children: { children: {
get: async function (id) { get: async function (code) {
return await request.get(`system/cities/${id}/children`); return await request.get(`system/city/code/${code}/children`);
}, },
}, },
provinces: { provinces: {
get: async function () { get: async function () {
return await request.get("system/cities/provinces"); return await request.get("system/city/provinces");
}, },
}, },
cities: { cities: {
get: async function (provinceId) { get: async function (provinceId) {
return await request.get(`system/cities/${provinceId}/cities`); return await request.get(`system/city/${provinceId}/cities`);
}, },
}, },
districts: { districts: {
get: async function (cityId) { get: async function (cityId) {
return await request.get(`system/cities/${cityId}/districts`); return await request.get(`system/city/${cityId}/districts`);
}, },
}, },
add: { add: {
post: async function (params) { post: async function (params) {
return await request.post("system/cities", params); return await request.post("system/city", params);
}, },
}, },
edit: { edit: {
put: async function (id, params) { put: async function (id, params) {
return await request.put(`system/cities/${id}`, params); return await request.put(`system/city/${id}`, params);
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/cities/${id}`); return await request.delete(`system/city/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post("system/cities/batch-delete", params); return await request.post("system/city/batch-delete", params);
}, },
}, },
batchStatus: { batchStatus: {
post: async function (params) { post: async function (params) {
return await request.post("system/cities/batch-status", params); return await request.post("system/city/batch-status", params);
}, },
}, },
}, },
@@ -362,79 +362,79 @@ export default {
}, },
// 通知管理 // 通知管理
notifications: { notification: {
list: { list: {
get: async function (params) { get: async function (params) {
return await request.get("system/notifications", { params }); return await request.get("system/notification", { params });
}, },
}, },
unread: { unread: {
get: async function (params) { get: async function (params) {
return await request.get("system/notifications/unread", { return await request.get("system/notification/unread", {
params, params,
}); });
}, },
}, },
unreadCount: { unreadCount: {
get: async function () { get: async function () {
return await request.get("system/notifications/unread-count"); return await request.get("system/notification/unread-count");
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/notifications/${id}`); return await request.get(`system/notification/${id}`);
}, },
}, },
markAsRead: { markAsRead: {
post: async function (id) { post: async function (id) {
return await request.post(`system/notifications/${id}/read`); return await request.post(`system/notification/${id}/read`);
}, },
}, },
batchMarkAsRead: { batchMarkAsRead: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/notifications/batch-read", "system/notification/batch-read",
params, params,
); );
}, },
}, },
markAllAsRead: { markAllAsRead: {
post: async function () { post: async function () {
return await request.post("system/notifications/read-all"); return await request.post("system/notification/read-all");
}, },
}, },
delete: { delete: {
delete: async function (id) { delete: async function (id) {
return await request.delete(`system/notifications/${id}`); return await request.delete(`system/notification/${id}`);
}, },
}, },
batchDelete: { batchDelete: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/notifications/batch-delete", "system/notification/batch-delete",
params, params,
); );
}, },
}, },
clearRead: { clearRead: {
post: async function () { post: async function () {
return await request.post("system/notifications/clear-read"); return await request.post("system/notification/clear-read");
}, },
}, },
statistics: { statistics: {
get: async function () { get: async function () {
return await request.get("system/notifications/statistics"); return await request.get("system/notification/statistics");
}, },
}, },
send: { send: {
post: async function (params) { post: async function (params) {
return await request.post("system/notifications/send", params); return await request.post("system/notification/send", params);
}, },
}, },
retryUnsent: { retryUnsent: {
post: async function (params) { post: async function (params) {
return await request.post( return await request.post(
"system/notifications/retry-unsent", "system/notification/retry-unsent",
params, params,
); );
}, },
@@ -443,72 +443,72 @@ export default {
// 公共接口 (无需认证) // 公共接口 (无需认证)
public: { public: {
configs: { config: {
all: { all: {
get: async function () { get: async function () {
return await request.get("system/configs"); return await request.get("system/config");
}, },
}, },
group: { group: {
get: async function (params) { get: async function (params) {
return await request.get("system/configs/group", { return await request.get("system/config/group", {
params, params,
}); });
}, },
}, },
key: { key: {
get: async function (params) { get: async function (params) {
return await request.get("system/configs/key", { params }); return await request.get("system/config/key", { params });
}, },
}, },
}, },
dictionaries: { dictionary: {
all: { all: {
get: async function () { get: async function () {
return await request.get("system/dictionaries"); return await request.get("system/dictionary");
}, },
}, },
code: { code: {
get: async function (params) { get: async function (params) {
return await request.get("system/dictionaries/code", { return await request.get("system/dictionary/code", {
params, params,
}); });
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/dictionaries/${id}`); return await request.get(`system/dictionary/${id}`);
}, },
}, },
}, },
cities: { city: {
tree: { tree: {
get: async function () { get: async function () {
return await request.get("system/cities/tree"); return await request.get("system/city/tree");
}, },
}, },
provinces: { provinces: {
get: async function () { get: async function () {
return await request.get("system/cities/provinces"); return await request.get("system/city/provinces");
}, },
}, },
cities: { cities: {
get: async function (provinceId) { get: async function (provinceId) {
return await request.get( return await request.get(
`system/cities/${provinceId}/cities`, `system/city/${provinceId}/cities`,
); );
}, },
}, },
districts: { districts: {
get: async function (cityId) { get: async function (cityId) {
return await request.get( return await request.get(
`system/cities/${cityId}/districts`, `system/city/${cityId}/districts`,
); );
}, },
}, },
detail: { detail: {
get: async function (id) { get: async function (id) {
return await request.get(`system/cities/${id}`); return await request.get(`system/city/${id}`);
}, },
}, },
}, },
@@ -0,0 +1,239 @@
<template>
<a-modal
v-model:open="visible"
:title="title"
:width="500"
:confirm-loading="loading"
@ok="handleOk"
@cancel="handleCancel"
>
<a-form
ref="formRef"
:model="formData"
:rules="rules"
:label-col="{ span: 6 }"
:wrapper-col="{ span: 18 }"
>
<a-form-item label="城市名称" name="title">
<a-input
v-model:value="formData.title"
placeholder="请输入城市名称"
allow-clear
/>
</a-form-item>
<a-form-item label="城市编码" name="code">
<a-input
v-model:value="formData.code"
placeholder="请输入城市编码"
allow-clear
:disabled="mode === 'edit'"
/>
</a-form-item>
<a-form-item
v-if="mode === 'add'"
label="父级城市"
name="parent_code"
>
<a-select
v-model:value="formData.parent_code"
placeholder="请选择父级城市"
allow-clear
show-search
:filter-option="filterOption"
>
<a-select-option :value="null"
>顶级城市</a-select-option
>
<a-select-option
v-for="city in flatCities"
:key="city.code"
:value="city.code"
>
{{ city.title }} ({{ city.code }})
</a-select-option>
</a-select>
</a-form-item>
<a-form-item
v-if="mode === 'addChild'"
label="父级城市"
name="parent_code"
>
<a-input v-model:value="parentCityTitle" disabled />
</a-form-item>
</a-form>
</a-modal>
</template>
<script setup>
import { ref, reactive, computed, watch } from "vue";
import { message } from "ant-design-vue";
import api from "@/api/system";
const props = defineProps({
visible: {
type: Boolean,
default: false,
},
cityData: {
type: Object,
default: () => ({}),
},
mode: {
type: String,
default: "add",
},
});
const emit = defineEmits(["update:visible", "success"]);
const formRef = ref(null);
const loading = ref(false);
const flatCities = ref([]);
const parentCityTitle = ref("");
const formData = reactive({
title: "",
code: "",
parent_code: null,
});
const rules = {
title: [
{ required: true, message: "请输入城市名称", trigger: "blur" },
{ max: 100, message: "城市名称不能超过100个字符", trigger: "blur" },
],
code: [
{ required: true, message: "请输入城市编码", trigger: "blur" },
{ max: 50, message: "城市编码不能超过50个字符", trigger: "blur" },
{
pattern: /^[A-Za-z0-9_-]+$/,
message: "城市编码只能包含字母、数字、下划线和横线",
trigger: "blur",
},
],
};
const title = computed(() => {
const titles = {
add: "新增城市",
addChild: "新增子城市",
edit: "编辑城市",
};
return titles[props.mode] || "城市";
});
const visible = computed({
get: () => props.visible,
set: (val) => emit("update:visible", val),
});
// 加载所有城市(用于父级选择)
const loadAllCities = async () => {
try {
const res = await api.cities.list.get({ page_size: 1000 });
if (res.code === 200) {
flatCities.value = res.data.list || [];
}
} catch (error) {
console.error("加载城市列表失败", error);
}
};
// 搜索过滤
const filterOption = (input, option) => {
return option.children[0].children
.toLowerCase()
.includes(input.toLowerCase());
};
// 重置表单
const resetForm = () => {
formData.title = "";
formData.code = "";
formData.parent_code = null;
parentCityTitle.value = "";
formRef.value?.clearValidate();
};
// 监听 cityData 变化
watch(
() => props.cityData,
(val) => {
if (val && props.visible) {
formData.title = val.title || "";
formData.code = val.code || "";
formData.parent_code = val.parent_code || null;
if (props.mode === "addChild" && val.parent_code) {
// 查找父级城市名称
const parentCity = flatCities.value.find(
(city) => city.code === val.parent_code,
);
parentCityTitle.value = parentCity
? `${parentCity.title} (${parentCity.code})`
: val.parent_code;
}
}
},
{ immediate: true, deep: true },
);
// 监听弹窗打开
watch(
() => props.visible,
(val) => {
if (val) {
loadAllCities();
} else {
resetForm();
}
},
);
// 确定
const handleOk = async () => {
try {
await formRef.value.validate();
loading.value = true;
const data = {
title: formData.title,
code: formData.code,
};
if (props.mode === "add" && formData.parent_code) {
data.parent_code = formData.parent_code;
}
let res;
if (props.mode === "add" || props.mode === "addChild") {
res = await api.cities.add.post(data);
} else if (props.mode === "edit") {
res = await api.cities.edit.put(props.cityData.id, data);
}
if (res.code === 200) {
message.success(props.mode === "edit" ? "更新成功" : "创建成功");
emit("success");
handleCancel();
}
} catch (error) {
if (error.errorFields) {
// 表单验证错误,不提示
} else {
message.error(error.message || "操作失败");
}
} finally {
loading.value = false;
}
};
// 取消
const handleCancel = () => {
resetForm();
emit("update:visible", false);
};
</script>
@@ -0,0 +1,384 @@
<template>
<div class="pages-base-layout city-page">
<div class="tool-bar">
<div class="left-panel">
<a-space>
<a-input
v-model:value="searchForm.keyword"
placeholder="城市名称/编码"
allow-clear
style="width: 180px"
/>
<a-button type="primary" @click="handleSearch">
<template #icon><search-outlined /></template>
搜索
</a-button>
<a-button @click="handleReset">
<template #icon><redo-outlined /></template>
重置
</a-button>
</a-space>
</div>
<div class="right-panel">
<a-button type="primary" @click="handleAdd">
<template #icon><plus-outlined /></template>
新增
</a-button>
<a-dropdown>
<a-button>
更多
<down-outlined />
</a-button>
<template #overlay>
<a-menu>
<a-menu-item @click="handleRefresh">
<reload-outlined />
刷新
</a-menu-item>
<a-menu-item @click="handleExpandAll">
<expand-outlined />
展开全部
</a-menu-item>
<a-menu-item @click="handleCollapseAll">
<compress-outlined />
折叠全部
</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</div>
</div>
<div class="table-content">
<a-table
:columns="columns"
:data-source="tableData"
:loading="loading"
:pagination="false"
:row-key="rowKey"
:expand-row-by-click="true"
:default-expand-all-rows="false"
:expand-icon-column-index="1"
:indent-size="20"
@expand="handleExpand"
>
<template #expandedRowRender="{ record }">
<a-table
:columns="childColumns"
:data-source="record.children"
:pagination="false"
:row-key="rowKey"
size="small"
:show-header="false"
>
<template #bodyCell="{ column, record: child }">
<template v-if="column.key === 'title'">
<a-tag color="blue">{{ child.title }}</a-tag>
</template>
<template v-else-if="column.key === 'code'">
{{ child.code }}
</template>
<template v-else-if="column.key === 'action'">
<a-space>
<a-button
type="link"
size="small"
@click="handleAddChild(child)"
>
新增子级
</a-button>
<a-button
type="link"
size="small"
@click="handleEdit(child)"
>
编辑
</a-button>
<a-popconfirm
title="确定要删除该城市吗?"
ok-text="确定"
cancel-text="取消"
@confirm="handleDelete(child.id)"
>
<a-button
type="link"
size="small"
danger
>删除</a-button
>
</a-popconfirm>
</a-space>
</template>
</template>
</a-table>
</template>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'title'">
<a-tag color="green">{{ record.title }}</a-tag>
</template>
<template v-else-if="column.key === 'code'">
{{ record.code }}
</template>
<template v-else-if="column.key === 'parent_code'">
<a-tag v-if="record.parent_code" color="purple">{{
record.parent_code
}}</a-tag>
<span v-else class="text-gray-400">-</span>
</template>
<template v-else-if="column.key === 'has_children'">
<a-tag v-if="hasChildren(record)" color="orange"
></a-tag
>
<span v-else class="text-gray-400"></span>
</template>
<template v-else-if="column.key === 'action'">
<a-space>
<a-button
type="link"
size="small"
@click="handleAddChild(record)"
>
新增子级
</a-button>
<a-button
type="link"
size="small"
@click="handleEdit(record)"
>
编辑
</a-button>
<a-popconfirm
title="确定要删除该城市吗?"
ok-text="确定"
cancel-text="取消"
@confirm="handleDelete(record.id)"
>
<a-button type="link" size="small" danger
>删除</a-button
>
</a-popconfirm>
</a-space>
</template>
</template>
</a-table>
</div>
<!-- 新增/编辑弹窗 -->
<SaveDialog
v-model:visible="saveDialogVisible"
:city-data="currentCity"
:mode="saveMode"
@success="handleSaveSuccess"
/>
</div>
</template>
<script setup>
import { ref, reactive, onMounted } from "vue";
import { message } from "ant-design-vue";
import api from "@/api/system";
import SaveDialog from "./components/SaveDialog.vue";
// 搜索表单
const searchForm = reactive({
keyword: "",
});
// 表格数据
const tableData = ref([]);
const loading = ref(false);
const expandedKeys = ref([]);
// 新增/编辑弹窗
const saveDialogVisible = ref(false);
const saveMode = ref("add");
const currentCity = ref(null);
// 表格列配置
const columns = [
{
title: "城市名称",
key: "title",
width: 250,
},
{
title: "城市编码",
key: "code",
width: 200,
},
{
title: "父级编码",
key: "parent_code",
width: 200,
},
{
title: "子级数量",
key: "has_children",
width: 120,
align: "center",
},
{
title: "操作",
key: "action",
width: 200,
fixed: "right",
},
];
// 子表格列配置
const childColumns = [
{
title: "城市名称",
key: "title",
width: 250,
},
{
title: "城市编码",
key: "code",
width: 200,
},
{
title: "操作",
key: "action",
width: 250,
},
];
const rowKey = (record) => record.id;
// 判断是否有子级
const hasChildren = (record) => {
return record.children && record.children.length > 0;
};
// 加载城市树形数据
const loadCityTree = async () => {
loading.value = true;
try {
const res = await api.cities.tree.get();
if (res.code === 200) {
tableData.value = res.data || [];
}
} catch (error) {
message.error("加载城市数据失败");
} finally {
loading.value = false;
}
};
// 搜索
const handleSearch = () => {
loadCityTree();
};
// 重置
const handleReset = () => {
searchForm.keyword = "";
loadCityTree();
};
// 刷新
const handleRefresh = () => {
loadCityTree();
};
// 展开全部
const handleExpandAll = () => {
const allKeys = [];
const collectKeys = (list) => {
list.forEach((item) => {
if (item.children && item.children.length > 0) {
allKeys.push(item.id);
collectKeys(item.children);
}
});
};
collectKeys(tableData.value);
expandedKeys.value = allKeys;
};
// 折叠全部
const handleCollapseAll = () => {
expandedKeys.value = [];
};
// 展开/折叠事件
const handleExpand = (expanded, record) => {
if (expanded) {
if (!expandedKeys.value.includes(record.id)) {
expandedKeys.value.push(record.id);
}
} else {
expandedKeys.value = expandedKeys.value.filter(
(key) => key !== record.id,
);
}
};
// 新增
const handleAdd = () => {
saveMode.value = "add";
currentCity.value = {
title: "",
code: "",
parent_code: null,
};
saveDialogVisible.value = true;
};
// 新增子级
const handleAddChild = (record) => {
saveMode.value = "addChild";
currentCity.value = {
title: "",
code: "",
parent_code: record.code,
};
saveDialogVisible.value = true;
};
// 编辑
const handleEdit = (record) => {
saveMode.value = "edit";
currentCity.value = {
id: record.id,
title: record.title,
code: record.code,
parent_code: record.parent_code,
};
saveDialogVisible.value = true;
};
// 删除
const handleDelete = async (id) => {
try {
const res = await api.cities.delete.delete(id);
if (res.code === 200) {
message.success("删除成功");
loadCityTree();
}
} catch (error) {
message.error(error.message || "删除失败");
}
};
// 保存成功
const handleSaveSuccess = () => {
loadCityTree();
};
onMounted(() => {
loadCityTree();
});
</script>
<style scoped lang="scss">
.city-page {
@extend .pages-base-layout;
.text-gray-400 {
color: #999;
}
}
</style>
@@ -0,0 +1,201 @@
<template>
<a-modal
v-model:open="visible"
title="日志详情"
width="800px"
:footer="null"
>
<a-descriptions v-if="logData" bordered :column="2" size="small">
<a-descriptions-item label="日志ID" :span="1">
{{ logData.id }}
</a-descriptions-item>
<a-descriptions-item label="用户名" :span="1">
{{ logData.username || "-" }}
</a-descriptions-item>
<a-descriptions-item label="模块" :span="1">
{{ logData.module || "-" }}
</a-descriptions-item>
<a-descriptions-item label="操作" :span="1">
{{ logData.action || "-" }}
</a-descriptions-item>
<a-descriptions-item label="请求方式" :span="1">
<a-tag :color="getMethodColor(logData.method)">
{{ logData.method }}
</a-tag>
</a-descriptions-item>
<a-descriptions-item label="URL" :span="1">
{{ logData.url || "-" }}
</a-descriptions-item>
<a-descriptions-item label="IP地址" :span="1">
{{ logData.ip || "-" }}
</a-descriptions-item>
<a-descriptions-item label="状态码" :span="1">
{{ logData.status_code || "-" }}
</a-descriptions-item>
<a-descriptions-item label="状态" :span="1">
<a-tag
:color="logData.status === 'success' ? 'success' : 'error'"
>
{{ logData.status === "success" ? "成功" : "失败" }}
</a-tag>
</a-descriptions-item>
<a-descriptions-item label="执行时间" :span="1">
<span
:style="{
color: getExecutionTimeColor(logData.execution_time),
}"
>
{{ logData.execution_time }}ms
</span>
</a-descriptions-item>
<a-descriptions-item label="创建时间" :span="2">
{{ logData.created_at || "-" }}
</a-descriptions-item>
<a-descriptions-item label="User Agent" :span="2">
<div style="max-height: 60px; overflow-y: auto">
{{ logData.user_agent || "-" }}
</div>
</a-descriptions-item>
<a-descriptions-item
v-if="logData.error_message"
label="错误信息"
:span="2"
>
<a-alert
:message="logData.error_message"
type="error"
show-icon
/>
</a-descriptions-item>
<a-descriptions-item
v-if="logData.params && Object.keys(logData.params).length > 0"
label="请求参数"
:span="2"
>
<a-collapse>
<a-collapse-panel key="params" header="查看请求参数">
<pre
style="
max-height: 300px;
overflow-y: auto;
margin: 0;
"
>{{ formatJson(logData.params) }}</pre
>
</a-collapse-panel>
</a-collapse>
</a-descriptions-item>
<a-descriptions-item
v-if="logData.result"
label="返回结果"
:span="2"
>
<a-collapse>
<a-collapse-panel key="result" header="查看返回结果">
<pre
style="
max-height: 300px;
overflow-y: auto;
margin: 0;
"
>{{ formatJson(logData.result) }}</pre
>
</a-collapse-panel>
</a-collapse>
</a-descriptions-item>
</a-descriptions>
<template #footer>
<a-button @click="handleClose">关闭</a-button>
</template>
</a-modal>
</template>
<script setup>
import { ref } from "vue";
import systemApi from "@/api/system";
defineOptions({
name: "LogDetailDialog",
});
const visible = ref(false);
const logData = ref(null);
// 获取请求方式颜色
const getMethodColor = (method) => {
const colors = {
GET: "blue",
POST: "green",
PUT: "orange",
DELETE: "red",
PATCH: "purple",
};
return colors[method] || "default";
};
// 获取执行时间颜色
const getExecutionTimeColor = (time) => {
if (time > 1000) return "#ff4d4f";
if (time > 500) return "#faad14";
return "#52c41a";
};
// 格式化JSON
const formatJson = (data) => {
if (typeof data === "string") {
try {
return JSON.stringify(JSON.parse(data), null, 2);
} catch (e) {
return data;
}
}
return JSON.stringify(data, null, 2);
};
// 打开弹窗
const open = async () => {
visible.value = true;
return {
setData,
};
};
// 设置数据
const setData = async (data) => {
if (data && data.id) {
// 如果传入了完整数据,直接使用
if (data.params || data.result) {
logData.value = data;
} else {
// 否则从服务器获取完整数据
try {
const res = await systemApi.logs.detail.get(data.id);
if (res.code === 200) {
logData.value = res.data;
}
} catch (error) {
console.error("获取日志详情失败:", error);
}
}
} else {
logData.value = data;
}
};
// 关闭弹窗
const handleClose = () => {
visible.value = false;
logData.value = null;
};
// 暴露方法
defineExpose({
open,
});
</script>
<style scoped lang="scss">
:deep(.ant-descriptions-item-label) {
width: 120px;
}
</style>
@@ -0,0 +1,604 @@
<template>
<div class="pages-sidebar-layout log-page">
<div class="left-box">
<div class="header">日志筛选</div>
<div class="body">
<a-tree
v-model:selectedKeys="selectedTreeKeys"
:tree-data="filterTreeData"
show-line
:field-names="{
title: 'title',
key: 'key',
children: 'children',
}"
@select="onTreeSelect"
>
<template #icon="{ dataRef }">
<ApiOutlined v-if="dataRef.type === 'method'" />
<CheckCircleOutlined
v-else-if="
dataRef.type === 'status' &&
dataRef.key === 'success'
"
/>
<CloseCircleOutlined
v-else-if="
dataRef.type === 'status' &&
dataRef.key === 'error'
"
/>
</template>
</a-tree>
</div>
</div>
<div class="right-box">
<!-- 统计卡片 -->
<div class="statistics-cards">
<a-row :gutter="16">
<a-col :span="6">
<a-card size="small" class="stat-card">
<a-statistic
title="总日志数"
:value="statistics.total || 0"
>
<template #prefix>
<FileTextOutlined style="color: #1890ff" />
</template>
</a-statistic>
</a-card>
</a-col>
<a-col :span="6">
<a-card size="small" class="stat-card">
<a-statistic
title="成功数"
:value="statistics.success || 0"
>
<template #prefix>
<CheckCircleOutlined
style="color: #52c41a"
/>
</template>
</a-statistic>
</a-card>
</a-col>
<a-col :span="6">
<a-card size="small" class="stat-card">
<a-statistic
title="失败数"
:value="statistics.error || 0"
>
<template #prefix>
<CloseCircleOutlined
style="color: #ff4d4f"
/>
</template>
</a-statistic>
</a-card>
</a-col>
<a-col :span="6">
<a-card size="small" class="stat-card">
<a-statistic
title="平均响应时间"
:value="statistics.avg_time || 0"
suffix="ms"
>
<template #prefix>
<ClockCircleOutlined
style="color: #faad14"
/>
</template>
</a-statistic>
</a-card>
</a-col>
</a-row>
</div>
<!-- 工具栏 -->
<div class="tool-bar">
<div class="left-panel">
<a-space>
<a-range-picker
v-model:value="dateRange"
:placeholder="['开始时间', '结束时间']"
style="width: 260px"
@change="handleDateChange"
/>
<a-button type="primary" @click="handleSearch">
<template #icon><SearchOutlined /></template>
搜索
</a-button>
<a-button @click="handleLogReset">
<template #icon><RedoOutlined /></template>
清除
</a-button>
</a-space>
</div>
<div class="right-panel">
<a-space>
<a-button
@click="handleExport"
:loading="exportLoading"
>
<template #icon><DownloadOutlined /></template>
导出
</a-button>
<a-dropdown>
<a-button>
更多
<DownOutlined />
</a-button>
<template #overlay>
<a-menu>
<a-menu-item @click="handleClearLogs">
<DeleteOutlined />清理日志
</a-menu-item>
<a-menu-item @click="handleRefreshStats">
<ReloadOutlined />刷新统计
</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</a-space>
</div>
</div>
<div class="table-content">
<sc-table
ref="tableRef"
:columns="columns"
:data-source="tableData"
:loading="loading"
:pagination="pagination"
:row-key="rowKey"
@refresh="refreshTable"
@paginationChange="handlePaginationChange"
>
<template #status="{ record }">
<a-tag
:color="
record.status === 'success'
? 'success'
: 'error'
"
>
{{ record.status === "success" ? "成功" : "失败" }}
</a-tag>
</template>
<template #method="{ record }">
<a-tag :color="getMethodColor(record.method)">
{{ record.method }}
</a-tag>
</template>
<template #execution_time="{ record }">
<span
:style="{
color:
record.execution_time > 1000
? '#ff4d4f'
: record.execution_time > 500
? '#faad14'
: '#52c41a',
}"
>
{{ record.execution_time }}ms
</span>
</template>
<template #action="{ record }">
<a-space>
<a-button
type="link"
size="small"
@click="handleView(record)"
>查看详情</a-button
>
<a-popconfirm
title="确定删除该日志吗?"
@confirm="handleDelete(record)"
>
<a-button type="link" size="small" danger
>删除</a-button
>
</a-popconfirm>
</a-space>
</template>
</sc-table>
</div>
</div>
</div>
<!-- 日志详情弹窗 -->
<detail-dialog ref="detailDialogRef" />
<!-- 清理日志确认弹窗 -->
<a-modal
v-model:open="dialog.clear"
title="清理日志"
:confirm-loading="clearLoading"
@ok="handleConfirmClear"
>
<a-form layout="vertical">
<a-form-item label="清理天数">
<a-input-number
v-model:value="clearDays"
:min="1"
:max="365"
style="width: 100%"
placeholder="请输入天数"
/>
</a-form-item>
<a-alert
message="删除指定天数之前的日志记录,此操作不可恢复"
type="warning"
show-icon
/>
</a-form>
</a-modal>
</template>
<script setup>
import { ref, reactive, onMounted, computed } from "vue";
import { message } from "ant-design-vue";
import {
SearchOutlined,
RedoOutlined,
DeleteOutlined,
DownOutlined,
ApiOutlined,
CheckCircleOutlined,
CloseCircleOutlined,
FileTextOutlined,
ClockCircleOutlined,
DownloadOutlined,
ReloadOutlined,
} from "@ant-design/icons-vue";
import scTable from "@/components/scTable/index.vue";
import detailDialog from "./components/DetailDialog.vue";
import systemApi from "@/api/system";
import { useTable } from "@/hooks/useTable";
defineOptions({
name: "systemLog",
});
// 统计数据
const statistics = ref({
total: 0,
success: 0,
error: 0,
avg_time: 0,
});
// 使用useTable hooks
const {
tableRef,
searchForm,
tableData,
loading,
pagination,
handleSearch,
handlePaginationChange,
refreshTable,
} = useTable({
api: systemApi.logs.list.get,
searchForm: {
method: "",
status: "",
start_date: "",
end_date: "",
},
columns: [],
needPagination: true,
});
// 对话框状态
const dialog = reactive({
detail: false,
clear: false,
});
// 弹窗引用
const detailDialogRef = ref(null);
// 清理日志相关
const clearDays = ref(30);
const clearLoading = ref(false);
// 导出相关
const exportLoading = ref(false);
// 日期范围
const dateRange = ref([]);
// 树形筛选数据
const treeData = ref([
{
title: "请求方式",
key: "method-root",
type: "root",
children: [
{ title: "GET", key: "GET", type: "method" },
{ title: "POST", key: "POST", type: "method" },
{ title: "PUT", key: "PUT", type: "method" },
{ title: "DELETE", key: "DELETE", type: "method" },
{ title: "PATCH", key: "PATCH", type: "method" },
],
},
{
title: "返回状态",
key: "status-root",
type: "root",
children: [
{ title: "成功", key: "success", type: "status" },
{ title: "失败", key: "error", type: "status" },
],
},
]);
// 选中的树节点
const selectedTreeKeys = ref([]);
// 行key
const rowKey = "id";
// 过滤后的树数据
const filterTreeData = computed(() => {
return treeData.value;
});
// 获取请求方式颜色
const getMethodColor = (method) => {
const colors = {
GET: "blue",
POST: "green",
PUT: "orange",
DELETE: "red",
PATCH: "purple",
};
return colors[method] || "default";
};
// 表格列配置
const columns = [
{ title: "ID", dataIndex: "id", key: "id", width: 80 },
{ title: "用户名", dataIndex: "username", key: "username", width: 120 },
{ title: "模块", dataIndex: "module", key: "module", width: 120 },
{ title: "操作", dataIndex: "action", key: "action", width: 150 },
{
title: "请求方式",
dataIndex: "method",
key: "method",
width: 100,
align: "center",
slot: "method",
},
{ title: "URL", dataIndex: "url", key: "url", ellipsis: true },
{ title: "IP地址", dataIndex: "ip", key: "ip", width: 140 },
{
title: "状态码",
dataIndex: "status_code",
key: "status_code",
width: 100,
align: "center",
},
{
title: "状态",
dataIndex: "status",
key: "status",
width: 100,
align: "center",
slot: "status",
},
{
title: "执行时间",
dataIndex: "execution_time",
key: "execution_time",
width: 120,
align: "center",
slot: "execution_time",
},
{
title: "创建时间",
dataIndex: "created_at",
key: "created_at",
width: 180,
},
{
title: "操作",
dataIndex: "table_action",
key: "table_action",
width: 150,
align: "center",
slot: "action",
fixed: "right",
},
];
// 加载统计数据
const loadStatistics = async () => {
try {
const res = await systemApi.logs.statistics.get(searchForm);
if (res.code === 200) {
statistics.value = res.data;
}
} catch (error) {
console.error("加载统计数据失败:", error);
}
};
// 树形选择事件
const onTreeSelect = (selectedKeys, { selectedNodes }) => {
if (selectedKeys.length > 0) {
const key = selectedKeys[0];
const node = selectedNodes[0];
// 重置搜索表单
searchForm.method = "";
searchForm.status = "";
// 根据节点类型设置对应的筛选条件
if (node.type === "method") {
searchForm.method = key;
} else if (node.type === "status") {
searchForm.status = key;
}
// 触发搜索
handleSearch();
// 同时刷新统计数据
loadStatistics();
} else {
// 取消选择时清空筛选条件
searchForm.method = "";
searchForm.status = "";
handleSearch();
// 同时刷新统计数据
loadStatistics();
}
};
// 日期变化
const handleDateChange = (dates) => {
if (dates && dates.length === 2) {
searchForm.start_date = dates[0].format("YYYY-MM-DD HH:mm:ss");
searchForm.end_date = dates[1].format("YYYY-MM-DD HH:mm:ss");
} else {
searchForm.start_date = "";
searchForm.end_date = "";
}
// 自动触发搜索
handleSearch();
// 同时刷新统计数据
loadStatistics();
};
// 重置
const handleLogReset = () => {
// 重置日期范围
dateRange.value = [];
searchForm.start_date = "";
searchForm.end_date = "";
// 重置树形选择
selectedTreeKeys.value = [];
searchForm.method = "";
searchForm.status = "";
// 重置分页到第一页
pagination.current = 1;
// 触发搜索
handleSearch();
// 同时刷新统计数据
loadStatistics();
};
// 查看详情
const handleView = async (record) => {
const dialog = await detailDialogRef.value?.open();
dialog?.setData(record);
};
// 删除日志
const handleDelete = async (record) => {
try {
const res = await systemApi.logs.delete.delete(record.id);
if (res.code === 200) {
message.success("删除成功");
refreshTable();
// 同时刷新统计数据
loadStatistics();
} else {
message.error(res.message || "删除失败");
}
} catch (error) {
console.error("删除日志失败:", error);
message.error("删除失败");
}
};
// 清理日志
const handleClearLogs = () => {
dialog.clear = true;
};
// 确认清理日志
const handleConfirmClear = async () => {
if (!clearDays.value || clearDays.value < 1) {
message.warning("请输入有效的天数");
return;
}
clearLoading.value = true;
try {
const res = await systemApi.logs.clear.post({ days: clearDays.value });
if (res.code === 200) {
message.success("清理成功");
dialog.clear = false;
clearDays.value = 30;
refreshTable();
// 同时刷新统计数据
loadStatistics();
} else {
message.error(res.message || "清理失败");
}
} catch (error) {
console.error("清理日志失败:", error);
message.error("清理失败");
} finally {
clearLoading.value = false;
}
};
// 刷新统计
const handleRefreshStats = () => {
loadStatistics();
};
// 导出日志
const handleExport = async () => {
exportLoading.value = true;
try {
const blob = await systemApi.logs.export.get(searchForm);
// 创建下载链接
const url = window.URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = `系统日志_${new Date().getTime()}.xlsx`;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(url);
message.success("导出成功");
} catch (error) {
console.error("导出失败:", error);
message.error("导出失败");
} finally {
exportLoading.value = false;
}
};
// 初始化
onMounted(() => {
// 页面加载时自动搜索一次
handleSearch();
// 加载统计数据
loadStatistics();
});
</script>
<style scoped lang="scss">
.log-page {
.statistics-cards {
margin-bottom: 16px;
background: #fff;
padding: 16px;
border-bottom: 1px solid #f0f0f0;
.stat-card {
text-align: center;
}
}
}
</style>
+13 -13
View File
@@ -16,7 +16,7 @@
Route::post('/change-password', [\App\Http\Controllers\Auth\Admin\Auth::class, 'changePassword']); Route::post('/change-password', [\App\Http\Controllers\Auth\Admin\Auth::class, 'changePassword']);
// 用户管理 // 用户管理
Route::prefix('users')->group(function () { Route::prefix('user')->group(function () {
Route::get('/', [\App\Http\Controllers\Auth\Admin\User::class, 'index']); Route::get('/', [\App\Http\Controllers\Auth\Admin\User::class, 'index']);
Route::get('/{id}', [\App\Http\Controllers\Auth\Admin\User::class, 'show']); Route::get('/{id}', [\App\Http\Controllers\Auth\Admin\User::class, 'show']);
Route::post('/', [\App\Http\Controllers\Auth\Admin\User::class, 'store']); Route::post('/', [\App\Http\Controllers\Auth\Admin\User::class, 'store']);
@@ -32,7 +32,7 @@
}); });
// 角色管理 // 角色管理
Route::prefix('roles')->group(function () { Route::prefix('role')->group(function () {
Route::get('/', [\App\Http\Controllers\Auth\Admin\Role::class, 'index']); Route::get('/', [\App\Http\Controllers\Auth\Admin\Role::class, 'index']);
Route::get('/all', [\App\Http\Controllers\Auth\Admin\Role::class, 'getAll']); Route::get('/all', [\App\Http\Controllers\Auth\Admin\Role::class, 'getAll']);
Route::get('/{id}', [\App\Http\Controllers\Auth\Admin\Role::class, 'show']); Route::get('/{id}', [\App\Http\Controllers\Auth\Admin\Role::class, 'show']);
@@ -48,7 +48,7 @@
}); });
// 权限管理 // 权限管理
Route::prefix('permissions')->group(function () { Route::prefix('permission')->group(function () {
Route::get('/', [\App\Http\Controllers\Auth\Admin\Permission::class, 'index']); Route::get('/', [\App\Http\Controllers\Auth\Admin\Permission::class, 'index']);
Route::get('/tree', [\App\Http\Controllers\Auth\Admin\Permission::class, 'tree']); Route::get('/tree', [\App\Http\Controllers\Auth\Admin\Permission::class, 'tree']);
Route::get('/menu', [\App\Http\Controllers\Auth\Admin\Permission::class, 'menu']); Route::get('/menu', [\App\Http\Controllers\Auth\Admin\Permission::class, 'menu']);
@@ -61,7 +61,7 @@
}); });
// 部门管理 // 部门管理
Route::prefix('departments')->group(function () { Route::prefix('department')->group(function () {
Route::get('/', [\App\Http\Controllers\Auth\Admin\Department::class, 'index']); Route::get('/', [\App\Http\Controllers\Auth\Admin\Department::class, 'index']);
Route::get('/tree', [\App\Http\Controllers\Auth\Admin\Department::class, 'tree']); Route::get('/tree', [\App\Http\Controllers\Auth\Admin\Department::class, 'tree']);
Route::get('/all', [\App\Http\Controllers\Auth\Admin\Department::class, 'getAll']); Route::get('/all', [\App\Http\Controllers\Auth\Admin\Department::class, 'getAll']);
@@ -77,7 +77,7 @@
}); });
// 在线用户管理 // 在线用户管理
Route::prefix('online-users')->group(function () { Route::prefix('online-user')->group(function () {
Route::get('/count', [\App\Http\Controllers\Auth\Admin\User::class, 'getOnlineCount']); Route::get('/count', [\App\Http\Controllers\Auth\Admin\User::class, 'getOnlineCount']);
Route::get('/', [\App\Http\Controllers\Auth\Admin\User::class, 'getOnlineUsers']); Route::get('/', [\App\Http\Controllers\Auth\Admin\User::class, 'getOnlineUsers']);
Route::get('/{userId}/sessions', [\App\Http\Controllers\Auth\Admin\User::class, 'getUserSessions']); Route::get('/{userId}/sessions', [\App\Http\Controllers\Auth\Admin\User::class, 'getUserSessions']);
@@ -89,7 +89,7 @@
// 系统管理模块 // 系统管理模块
Route::prefix('system')->group(function () { Route::prefix('system')->group(function () {
// 系统配置管理 // 系统配置管理
Route::prefix('configs')->group(function () { Route::prefix('setting')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\Config::class, 'index']); Route::get('/', [\App\Http\Controllers\System\Admin\Config::class, 'index']);
Route::get('/all', [\App\Http\Controllers\System\Admin\Config::class, 'getByGroup']); Route::get('/all', [\App\Http\Controllers\System\Admin\Config::class, 'getByGroup']);
Route::get('/groups', [\App\Http\Controllers\System\Admin\Config::class, 'getGroups']); Route::get('/groups', [\App\Http\Controllers\System\Admin\Config::class, 'getGroups']);
@@ -102,7 +102,7 @@
}); });
// 系统操作日志 // 系统操作日志
Route::prefix('logs')->group(function () { Route::prefix('log')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\Log::class, 'index']); Route::get('/', [\App\Http\Controllers\System\Admin\Log::class, 'index']);
Route::get('/export', [\App\Http\Controllers\System\Admin\Log::class, 'export']); Route::get('/export', [\App\Http\Controllers\System\Admin\Log::class, 'export']);
Route::get('/statistics', [\App\Http\Controllers\System\Admin\Log::class, 'getStatistics']); Route::get('/statistics', [\App\Http\Controllers\System\Admin\Log::class, 'getStatistics']);
@@ -113,7 +113,7 @@
}); });
// 数据字典管理 // 数据字典管理
Route::prefix('dictionaries')->group(function () { Route::prefix('dictionary')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\Dictionary::class, 'index']); Route::get('/', [\App\Http\Controllers\System\Admin\Dictionary::class, 'index']);
Route::get('/all', [\App\Http\Controllers\System\Admin\Dictionary::class, 'all']); Route::get('/all', [\App\Http\Controllers\System\Admin\Dictionary::class, 'all']);
Route::get('/{id}', [\App\Http\Controllers\System\Admin\Dictionary::class, 'show']); Route::get('/{id}', [\App\Http\Controllers\System\Admin\Dictionary::class, 'show']);
@@ -125,7 +125,7 @@
}); });
// 数据字典项管理 // 数据字典项管理
Route::prefix('dictionary-items')->group(function () { Route::prefix('dictionary-item')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\Dictionary::class, 'getItemsList']); Route::get('/', [\App\Http\Controllers\System\Admin\Dictionary::class, 'getItemsList']);
Route::get('/all', [\App\Http\Controllers\System\Admin\Dictionary::class, 'getAllItems']); Route::get('/all', [\App\Http\Controllers\System\Admin\Dictionary::class, 'getAllItems']);
Route::post('/', [\App\Http\Controllers\System\Admin\Dictionary::class, 'storeItem']); Route::post('/', [\App\Http\Controllers\System\Admin\Dictionary::class, 'storeItem']);
@@ -136,7 +136,7 @@
}); });
// 任务管理 // 任务管理
Route::prefix('tasks')->group(function () { Route::prefix('task')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\Task::class, 'index']); Route::get('/', [\App\Http\Controllers\System\Admin\Task::class, 'index']);
Route::get('/all', [\App\Http\Controllers\System\Admin\Task::class, 'all']); Route::get('/all', [\App\Http\Controllers\System\Admin\Task::class, 'all']);
Route::get('/statistics', [\App\Http\Controllers\System\Admin\Task::class, 'getStatistics']); Route::get('/statistics', [\App\Http\Controllers\System\Admin\Task::class, 'getStatistics']);
@@ -150,11 +150,11 @@
}); });
// 城市数据管理 // 城市数据管理
Route::prefix('cities')->group(function () { Route::prefix('city')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\City::class, 'index']); Route::get('/', [\App\Http\Controllers\System\Admin\City::class, 'index']);
Route::get('/tree', [\App\Http\Controllers\System\Admin\City::class, 'tree']); Route::get('/tree', [\App\Http\Controllers\System\Admin\City::class, 'tree']);
Route::get('/{id}', [\App\Http\Controllers\System\Admin\City::class, 'show']); Route::get('/{id}', [\App\Http\Controllers\System\Admin\City::class, 'show']);
Route::get('/{id}/children', [\App\Http\Controllers\System\Admin\City::class, 'children']); Route::get('/code/{code}/children', [\App\Http\Controllers\System\Admin\City::class, 'children']);
Route::get('/provinces', [\App\Http\Controllers\System\Admin\City::class, 'provinces']); Route::get('/provinces', [\App\Http\Controllers\System\Admin\City::class, 'provinces']);
Route::get('/{provinceId}/cities', [\App\Http\Controllers\System\Admin\City::class, 'cities']); Route::get('/{provinceId}/cities', [\App\Http\Controllers\System\Admin\City::class, 'cities']);
Route::get('/{cityId}/districts', [\App\Http\Controllers\System\Admin\City::class, 'districts']); Route::get('/{cityId}/districts', [\App\Http\Controllers\System\Admin\City::class, 'districts']);
@@ -175,7 +175,7 @@
}); });
// 通知管理 // 通知管理
Route::prefix('notifications')->group(function () { Route::prefix('notification')->group(function () {
Route::get('/', [\App\Http\Controllers\System\Admin\Notification::class, 'index']); Route::get('/', [\App\Http\Controllers\System\Admin\Notification::class, 'index']);
Route::get('/unread', [\App\Http\Controllers\System\Admin\Notification::class, 'unread']); Route::get('/unread', [\App\Http\Controllers\System\Admin\Notification::class, 'unread']);
Route::get('/unread-count', [\App\Http\Controllers\System\Admin\Notification::class, 'unreadCount']); Route::get('/unread-count', [\App\Http\Controllers\System\Admin\Notification::class, 'unreadCount']);
+11 -11
View File
@@ -6,21 +6,21 @@
// 公开路由(不需要认证) // 公开路由(不需要认证)
Route::prefix('system')->group(function () { Route::prefix('system')->group(function () {
// 获取所有系统配置 // 获取所有系统配置
Route::get('/configs', [\App\Http\Controllers\System\Api\Config::class, 'all']); Route::get('/config', [\App\Http\Controllers\System\Api\Config::class, 'all']);
Route::get('/configs/group', [\App\Http\Controllers\System\Api\Config::class, 'getByGroup']); Route::get('/config/group', [\App\Http\Controllers\System\Api\Config::class, 'getByGroup']);
Route::get('/configs/key', [\App\Http\Controllers\System\Api\Config::class, 'getByKey']); Route::get('/config/key', [\App\Http\Controllers\System\Api\Config::class, 'getByKey']);
// 获取所有字典数据(用于前端缓存) // 获取所有字典数据(用于前端缓存)
Route::get('/dictionaries', [Dictionary::class, 'all']); Route::get('/dictionary', [Dictionary::class, 'all']);
Route::get('/dictionaries/code', [Dictionary::class, 'getByCode']); Route::get('/dictionary/code', [Dictionary::class, 'getByCode']);
Route::get('/dictionaries/{id}', [Dictionary::class, 'show']); Route::get('/dictionary/{id}', [Dictionary::class, 'show']);
// 获取城市数据 // 获取城市数据
Route::get('/cities/tree', [\App\Http\Controllers\System\Api\City::class, 'tree']); Route::get('/city/tree', [\App\Http\Controllers\System\Api\City::class, 'tree']);
Route::get('/cities/provinces', [\App\Http\Controllers\System\Api\City::class, 'provinces']); Route::get('/city/provinces', [\App\Http\Controllers\System\Api\City::class, 'provinces']);
Route::get('/cities/{provinceId}/cities', [\App\Http\Controllers\System\Api\City::class, 'cities']); Route::get('/city/{provinceId}/cities', [\App\Http\Controllers\System\Api\City::class, 'cities']);
Route::get('/cities/{cityId}/districts', [\App\Http\Controllers\System\Api\City::class, 'districts']); Route::get('/city/{cityId}/districts', [\App\Http\Controllers\System\Api\City::class, 'districts']);
Route::get('/cities/{id}', [\App\Http\Controllers\System\Api\City::class, 'show']); Route::get('/city/{id}', [\App\Http\Controllers\System\Api\City::class, 'show']);
// 文件上传 // 文件上传
Route::post('/upload', [\App\Http\Controllers\System\Api\Upload::class, 'upload']); Route::post('/upload', [\App\Http\Controllers\System\Api\Upload::class, 'upload']);