mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 06:02:38 +08:00
添加字典模块
This commit is contained in:
parent
4d0064fafd
commit
ce3d0a7e06
507
build/cool/temp/entity.d.ts
vendored
507
build/cool/temp/entity.d.ts
vendored
@ -0,0 +1,507 @@
|
|||||||
|
declare interface BaseSysDepartmentEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 部门名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 上级部门ID
|
||||||
|
*/
|
||||||
|
parentId?: BigInt;
|
||||||
|
/**
|
||||||
|
* 排序
|
||||||
|
*/
|
||||||
|
orderNum?: number;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface BaseSysLogEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 用户ID
|
||||||
|
*/
|
||||||
|
userId?: BigInt;
|
||||||
|
/**
|
||||||
|
* 行为
|
||||||
|
*/
|
||||||
|
action?: string;
|
||||||
|
/**
|
||||||
|
* ip
|
||||||
|
*/
|
||||||
|
ip?: string;
|
||||||
|
/**
|
||||||
|
* ip地址
|
||||||
|
*/
|
||||||
|
ipAddr?: string;
|
||||||
|
/**
|
||||||
|
* 参数
|
||||||
|
*/
|
||||||
|
params?: string;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface BaseSysMenuEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 父菜单ID
|
||||||
|
*/
|
||||||
|
parentId?: BigInt;
|
||||||
|
/**
|
||||||
|
* 菜单名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 菜单地址
|
||||||
|
*/
|
||||||
|
router?: string;
|
||||||
|
/**
|
||||||
|
* 权限标识
|
||||||
|
*/
|
||||||
|
perms?: string;
|
||||||
|
/**
|
||||||
|
* 类型 0:目录 1:菜单 2:按钮
|
||||||
|
*/
|
||||||
|
type?: number;
|
||||||
|
/**
|
||||||
|
* 图标
|
||||||
|
*/
|
||||||
|
icon?: string;
|
||||||
|
/**
|
||||||
|
* 排序
|
||||||
|
*/
|
||||||
|
orderNum?: number;
|
||||||
|
/**
|
||||||
|
* 视图地址
|
||||||
|
*/
|
||||||
|
viewPath?: string;
|
||||||
|
/**
|
||||||
|
* 路由缓存
|
||||||
|
*/
|
||||||
|
keepAlive?: boolean;
|
||||||
|
/**
|
||||||
|
* 是否显示
|
||||||
|
*/
|
||||||
|
isShow?: boolean;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface BaseSysParamEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 键位
|
||||||
|
*/
|
||||||
|
keyName?: string;
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 数据
|
||||||
|
*/
|
||||||
|
data?: string;
|
||||||
|
/**
|
||||||
|
* 数据类型 0:字符串 1:数组 2:键值对
|
||||||
|
*/
|
||||||
|
dataType?: number;
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark?: string;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface BaseSysRoleEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 用户ID
|
||||||
|
*/
|
||||||
|
userId?: string;
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 角色标签
|
||||||
|
*/
|
||||||
|
label?: string;
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark?: string;
|
||||||
|
/**
|
||||||
|
* 数据权限是否关联上下级
|
||||||
|
*/
|
||||||
|
relevance?: number;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface BaseSysUserEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 部门ID
|
||||||
|
*/
|
||||||
|
departmentId?: BigInt;
|
||||||
|
/**
|
||||||
|
* 姓名
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 用户名
|
||||||
|
*/
|
||||||
|
username?: string;
|
||||||
|
/**
|
||||||
|
* 密码
|
||||||
|
*/
|
||||||
|
password?: string;
|
||||||
|
/**
|
||||||
|
* 密码版本, 作用是改完密码,让原来的token失效
|
||||||
|
*/
|
||||||
|
passwordV?: number;
|
||||||
|
/**
|
||||||
|
* 昵称
|
||||||
|
*/
|
||||||
|
nickName?: string;
|
||||||
|
/**
|
||||||
|
* 头像
|
||||||
|
*/
|
||||||
|
headImg?: string;
|
||||||
|
/**
|
||||||
|
* 手机
|
||||||
|
*/
|
||||||
|
phone?: string;
|
||||||
|
/**
|
||||||
|
* 邮箱
|
||||||
|
*/
|
||||||
|
email?: string;
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark?: string;
|
||||||
|
/**
|
||||||
|
* 状态 0:禁用 1:启用
|
||||||
|
*/
|
||||||
|
status?: boolean;
|
||||||
|
/**
|
||||||
|
* socketId
|
||||||
|
*/
|
||||||
|
socketId?: string;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface DemoGoodsEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 标题
|
||||||
|
*/
|
||||||
|
title?: string;
|
||||||
|
/**
|
||||||
|
* 图片
|
||||||
|
*/
|
||||||
|
pic?: string;
|
||||||
|
/**
|
||||||
|
* 价格
|
||||||
|
*/
|
||||||
|
price?: number;
|
||||||
|
/**
|
||||||
|
* 分类
|
||||||
|
*/
|
||||||
|
type?: number;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface DictInfoEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 类型ID
|
||||||
|
*/
|
||||||
|
typeId?: number;
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 排序
|
||||||
|
*/
|
||||||
|
orderNum?: number;
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark?: string;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface DictTypeEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 标识
|
||||||
|
*/
|
||||||
|
key?: string;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface SpaceInfoEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 地址
|
||||||
|
*/
|
||||||
|
url?: string;
|
||||||
|
/**
|
||||||
|
* 类型
|
||||||
|
*/
|
||||||
|
type?: string;
|
||||||
|
/**
|
||||||
|
* 分类ID
|
||||||
|
*/
|
||||||
|
classifyId?: BigInt;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface SpaceTypeEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 类别名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* 父分类ID
|
||||||
|
*/
|
||||||
|
parentId?: number;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare interface TaskInfoEntity {
|
||||||
|
/**
|
||||||
|
* ID
|
||||||
|
*/
|
||||||
|
id?: number;
|
||||||
|
/**
|
||||||
|
* 任务ID
|
||||||
|
*/
|
||||||
|
jobId?: string;
|
||||||
|
/**
|
||||||
|
* 任务配置
|
||||||
|
*/
|
||||||
|
repeatConf?: string;
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
/**
|
||||||
|
* cron
|
||||||
|
*/
|
||||||
|
cron?: string;
|
||||||
|
/**
|
||||||
|
* 最大执行次数 不传为无限次
|
||||||
|
*/
|
||||||
|
limit?: number;
|
||||||
|
/**
|
||||||
|
* 每间隔多少毫秒执行一次 如果cron设置了 这项设置就无效
|
||||||
|
*/
|
||||||
|
every?: number;
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark?: string;
|
||||||
|
/**
|
||||||
|
* 状态 0:停止 1:运行
|
||||||
|
*/
|
||||||
|
status?: boolean;
|
||||||
|
/**
|
||||||
|
* 开始时间
|
||||||
|
*/
|
||||||
|
startDate?: Date;
|
||||||
|
/**
|
||||||
|
* 结束时间
|
||||||
|
*/
|
||||||
|
endDate?: Date;
|
||||||
|
/**
|
||||||
|
* 数据
|
||||||
|
*/
|
||||||
|
data?: string;
|
||||||
|
/**
|
||||||
|
* 执行的service实例ID
|
||||||
|
*/
|
||||||
|
service?: string;
|
||||||
|
/**
|
||||||
|
* 状态 0:系统 1:用户
|
||||||
|
*/
|
||||||
|
type?: number;
|
||||||
|
/**
|
||||||
|
* 下一次执行时间
|
||||||
|
*/
|
||||||
|
nextRunTime?: Date;
|
||||||
|
/**
|
||||||
|
* 状态 0:cron 1:时间间隔
|
||||||
|
*/
|
||||||
|
taskType?: number;
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
createTime?: Date;
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
updateTime?: Date;
|
||||||
|
/**
|
||||||
|
* 任意键值
|
||||||
|
*/
|
||||||
|
[key: string]: any;
|
||||||
|
}
|
@ -1 +1 @@
|
|||||||
[["/admin/base/comm",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/personUpdate",""],["","/uploadMode",""],["","/permmenu",""],["","/logout",""]]],["/admin/base/open",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/refreshToken",""],["","/captcha",""],["","/login",""],["","/html",""],["","/eps",""]]],["/admin/base/sys/department",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/order",""]]],["/admin/base/sys/log",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/setKeep",""],["","/getKeep",""],["","/clear",""]]],["/admin/base/sys/menu",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/base/sys/param",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/html",""]]],["/admin/base/sys/role",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/base/sys/user",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/move",""]]],["/admin/demo/goods",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/space/info",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/space/type",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/task/info",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""],["","/start",""],["","/once",""],["","/stop",""],["","/log",""]]],["/chat/message",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/chat/session",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/test",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]]]
|
[["/admin/base/comm",[["post","/personUpdate",""],["get","/uploadMode",""],["get","/permmenu",""],["get","/person",""],["post","/upload",""],["post","/logout",""],["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/base/open",[["get","/refreshToken",""],["get","/captcha",""],["post","/login",""],["get","/html",""],["get","/eps",""],["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/base/sys/department",[["post","/delete",""],["post","/update",""],["post","/order",""],["post","/list",""],["post","/add",""],["","/page",""],["","/info",""]]],["/admin/base/sys/log",[["post","/setKeep",""],["get","/getKeep",""],["post","/clear",""],["post","/page",""],["","/list",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/admin/base/sys/menu",[["post","/delete",""],["post","/update",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/base/sys/param",[["post","/delete",""],["post","/update",""],["get","/html",""],["get","/info",""],["post","/page",""],["post","/add",""],["","/list",""]]],["/admin/base/sys/role",[["post","/delete",""],["post","/update",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/base/sys/user",[["post","/delete",""],["post","/update",""],["post","/move",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/demo/goods",[["post","/delete",""],["post","/update",""],["get","/info",""],["post","/page",""],["post","/list",""],["post","/add",""]]],["/admin/dict/info",[["post","/delete",""],["post","/update",""],["post","/data",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/dict/type",[["post","/delete",""],["post","/update",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/space/info",[["post","/delete",""],["post","/update",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/space/type",[["post","/delete",""],["post","/update",""],["get","/info",""],["post","/list",""],["post","/page",""],["post","/add",""]]],["/admin/task/info",[["post","/delete",""],["post","/update",""],["post","/start",""],["post","/once",""],["post","/stop",""],["get","/info",""],["post","/page",""],["get","/log",""],["post","/add",""],["","/list",""]]],["/chat/message",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/chat/session",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]],["/test",[["","/list",""],["","/page",""],["","/info",""],["","/update",""],["","/delete",""],["","/add",""]]]]
|
789
build/cool/temp/service.d.ts
vendored
789
build/cool/temp/service.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "front-next",
|
"name": "front-next",
|
||||||
"version": "5.5.1",
|
"version": "5.6.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite --host",
|
"dev": "vite --host",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
@ -9,7 +9,7 @@
|
|||||||
"lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix"
|
"lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cool-vue/crud": "^5.2.7",
|
"@cool-vue/crud": "^5.2.10",
|
||||||
"@element-plus/icons-vue": "^1.1.3",
|
"@element-plus/icons-vue": "^1.1.3",
|
||||||
"@vueuse/core": "^8.2.5",
|
"@vueuse/core": "^8.2.5",
|
||||||
"axios": "^0.27.2",
|
"axios": "^0.27.2",
|
||||||
|
@ -8,6 +8,7 @@ import VueECharts from "vue-echarts";
|
|||||||
import ElementPlus from "element-plus";
|
import ElementPlus from "element-plus";
|
||||||
import "element-plus/theme-chalk/src/index.scss";
|
import "element-plus/theme-chalk/src/index.scss";
|
||||||
import "uno.css";
|
import "uno.css";
|
||||||
|
import { useDict } from "/$/dict";
|
||||||
|
|
||||||
export async function bootstrap(Vue: App) {
|
export async function bootstrap(Vue: App) {
|
||||||
// 缓存
|
// 缓存
|
||||||
@ -38,6 +39,12 @@ export async function bootstrap(Vue: App) {
|
|||||||
app.showLoading();
|
app.showLoading();
|
||||||
|
|
||||||
if (user.token) {
|
if (user.token) {
|
||||||
|
// 字典
|
||||||
|
const { dict } = useDict();
|
||||||
|
|
||||||
|
// 获取字典数据
|
||||||
|
dict.refresh();
|
||||||
|
|
||||||
// 获取用户信息
|
// 获取用户信息
|
||||||
user.get();
|
user.get();
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { useStore } from "../store";
|
import { useStore } from "../store";
|
||||||
import { isObject } from "lodash";
|
import { isArray, isObject } from "lodash";
|
||||||
|
|
||||||
function parse(value: any) {
|
function parse(value: any) {
|
||||||
const { menu } = useStore();
|
const { menu } = useStore();
|
||||||
@ -28,3 +28,15 @@ export function checkPerm(value: any) {
|
|||||||
|
|
||||||
return parse(value);
|
return parse(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getPerm(service: any, names: string[] | string) {
|
||||||
|
if (!service._permission) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isArray(names)) {
|
||||||
|
names = [names];
|
||||||
|
}
|
||||||
|
|
||||||
|
return !names.find((e) => !service._permission[e]);
|
||||||
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-select v-model="value" @change="onChange" clearable>
|
<el-select v-model="value" @change="onChange" clearable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="(item, index) in options"
|
v-for="(item, index) in list"
|
||||||
:key="index"
|
:key="index"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { useCrud } from "@cool-vue/crud";
|
import { useCrud } from "@cool-vue/crud";
|
||||||
import { defineComponent, PropType, ref, watch } from "vue";
|
import { computed, defineComponent, isRef, ref, watch } from "vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "cl-select",
|
name: "cl-select",
|
||||||
@ -19,7 +19,7 @@ export default defineComponent({
|
|||||||
props: {
|
props: {
|
||||||
modelValue: [String, Number],
|
modelValue: [String, Number],
|
||||||
options: {
|
options: {
|
||||||
type: Array as PropType<Array<{ label: string; value: any }>>,
|
type: Array,
|
||||||
default: () => []
|
default: () => []
|
||||||
},
|
},
|
||||||
prop: String
|
prop: String
|
||||||
@ -31,6 +31,9 @@ export default defineComponent({
|
|||||||
// cl-crud
|
// cl-crud
|
||||||
const Crud = useCrud();
|
const Crud = useCrud();
|
||||||
const value = ref();
|
const value = ref();
|
||||||
|
const list = computed<any>(() =>
|
||||||
|
isRef(props.options) ? props.options.value : props.options
|
||||||
|
);
|
||||||
|
|
||||||
// 值改变
|
// 值改变
|
||||||
function onChange(val: string) {
|
function onChange(val: string) {
|
||||||
@ -53,6 +56,7 @@ export default defineComponent({
|
|||||||
);
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
list,
|
||||||
value,
|
value,
|
||||||
onChange
|
onChange
|
||||||
};
|
};
|
||||||
|
154
src/modules/base/components/view/group.vue
Normal file
154
src/modules/base/components/view/group.vue
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
<template>
|
||||||
|
<div class="cl-view-group">
|
||||||
|
<div class="cl-view-group__wrap">
|
||||||
|
<!-- 组 -->
|
||||||
|
<div class="cl-view-group__left" :class="[isExpand ? '_expand' : '_collapse']">
|
||||||
|
<slot name="left"></slot>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 内容 -->
|
||||||
|
<div class="cl-view-group__right">
|
||||||
|
<div class="cl-view-group__right-head">
|
||||||
|
<div class="icon" @click="toExpand()">
|
||||||
|
<el-icon v-if="isExpand"><arrow-left /></el-icon>
|
||||||
|
<el-icon v-else><arrow-right /></el-icon>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span>{{ title }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cl-view-group__right-content">
|
||||||
|
<slot name="right"></slot>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent, ref, watch } from "vue";
|
||||||
|
import { ArrowLeft, ArrowRight } from "@element-plus/icons-vue";
|
||||||
|
import { useBase } from "/$/base";
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
name: "cl-view-group",
|
||||||
|
components: {
|
||||||
|
ArrowLeft,
|
||||||
|
ArrowRight
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
title: String
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const { app } = useBase();
|
||||||
|
|
||||||
|
// 是否展开
|
||||||
|
const isExpand = ref<boolean>(true);
|
||||||
|
|
||||||
|
// 收起、展开
|
||||||
|
function toExpand(value?: boolean) {
|
||||||
|
isExpand.value = value === undefined ? !isExpand.value : value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 小屏幕下
|
||||||
|
function checkExpand(value?: boolean) {
|
||||||
|
if (app.browser.isMini) {
|
||||||
|
toExpand(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 监听屏幕大小变化
|
||||||
|
watch(
|
||||||
|
() => app.browser.isMini,
|
||||||
|
(val: boolean) => {
|
||||||
|
isExpand.value = !val;
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
isExpand,
|
||||||
|
toExpand,
|
||||||
|
checkExpand,
|
||||||
|
app
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.cl-view-group {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&__wrap {
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__left {
|
||||||
|
height: 100%;
|
||||||
|
width: 300px;
|
||||||
|
max-width: calc(100% - 50px);
|
||||||
|
background-color: #fff;
|
||||||
|
transition: width 0.3s;
|
||||||
|
margin-right: 10px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
&._collapse {
|
||||||
|
margin-right: 0;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__right {
|
||||||
|
width: calc(100% - 310px);
|
||||||
|
flex: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
&-head {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 40px;
|
||||||
|
position: relative;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 14px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
font-size: 18px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: #fff;
|
||||||
|
height: 40px;
|
||||||
|
width: 80px;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&-content {
|
||||||
|
height: calc(100% - 40px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
.cl-view-group__right {
|
||||||
|
width: calc(100% - 100px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,100 +1,84 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="view-user">
|
<cl-view-group :ref="setRefs('viewGroup')" :title="title">
|
||||||
<div class="pane">
|
<template #left>
|
||||||
<!-- 组织架构 -->
|
<dept-tree @row-click="onDeptRowClick" @user-add="onDeptUserAdd" />
|
||||||
<div class="dept" :class="[isExpand ? '_expand' : '_collapse']">
|
</template>
|
||||||
<dept-tree @row-click="onDeptRowClick" @user-add="onDeptUserAdd" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 成员列表 -->
|
<template #right>
|
||||||
<div class="user">
|
<cl-crud ref="Crud">
|
||||||
<div class="user__header">
|
<el-row>
|
||||||
<div class="icon" @click="deptExpand">
|
<cl-refresh-btn />
|
||||||
<el-icon v-if="isExpand"><arrow-left /></el-icon>
|
<cl-add-btn />
|
||||||
<el-icon v-else><arrow-right /></el-icon>
|
<cl-multi-delete-btn />
|
||||||
</div>
|
<el-button
|
||||||
|
v-permission="service.base.sys.user.move"
|
||||||
|
type="success"
|
||||||
|
:disabled="selects.ids.length == 0"
|
||||||
|
@click="toMove()"
|
||||||
|
>转移</el-button
|
||||||
|
>
|
||||||
|
<cl-flex1 />
|
||||||
|
<cl-search-key />
|
||||||
|
</el-row>
|
||||||
|
|
||||||
<span>成员列表({{ selects.dept?.name }})</span>
|
<el-row>
|
||||||
</div>
|
<cl-table
|
||||||
|
ref="Table"
|
||||||
|
:default-sort="{
|
||||||
|
prop: 'createTime',
|
||||||
|
order: 'descending'
|
||||||
|
}"
|
||||||
|
@selection-change="onSelectionChange"
|
||||||
|
>
|
||||||
|
<!-- 权限 -->
|
||||||
|
<template #column-roleName="{ scope }">
|
||||||
|
<template v-if="scope.row.roleName">
|
||||||
|
<el-tag
|
||||||
|
v-for="(item, index) in scope.row.roleName.split(',')"
|
||||||
|
:key="index"
|
||||||
|
disable-transitions
|
||||||
|
size="small"
|
||||||
|
effect="dark"
|
||||||
|
style="margin: 2px"
|
||||||
|
>{{ item }}</el-tag
|
||||||
|
>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
|
||||||
<div class="user__container">
|
<!-- 单个转移 -->
|
||||||
<cl-crud ref="Crud">
|
<template #slot-btn="{ scope }">
|
||||||
<el-row>
|
|
||||||
<cl-refresh-btn />
|
|
||||||
<cl-add-btn />
|
|
||||||
<cl-multi-delete-btn />
|
|
||||||
<el-button
|
<el-button
|
||||||
v-permission="service.base.sys.user.move"
|
v-permission="service.base.sys.user.permission.move"
|
||||||
type="success"
|
text
|
||||||
:disabled="selects.ids.length == 0"
|
bg
|
||||||
@click="toMove()"
|
@click="toMove(scope.row)"
|
||||||
>转移</el-button
|
>转移</el-button
|
||||||
>
|
>
|
||||||
<cl-flex1 />
|
</template>
|
||||||
<cl-search-key />
|
</cl-table>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-row>
|
<el-row>
|
||||||
<cl-table
|
<cl-flex1 />
|
||||||
ref="Table"
|
<cl-pagination />
|
||||||
:default-sort="{
|
</el-row>
|
||||||
prop: 'createTime',
|
|
||||||
order: 'descending'
|
|
||||||
}"
|
|
||||||
@selection-change="onSelectionChange"
|
|
||||||
>
|
|
||||||
<!-- 权限 -->
|
|
||||||
<template #column-roleName="{ scope }">
|
|
||||||
<template v-if="scope.row.roleName">
|
|
||||||
<el-tag
|
|
||||||
v-for="(item, index) in scope.row.roleName.split(',')"
|
|
||||||
:key="index"
|
|
||||||
disable-transitions
|
|
||||||
size="small"
|
|
||||||
effect="dark"
|
|
||||||
style="margin: 2px"
|
|
||||||
>{{ item }}</el-tag
|
|
||||||
>
|
|
||||||
</template>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<!-- 单个转移 -->
|
<cl-upsert ref="Upsert" />
|
||||||
<template #slot-btn="{ scope }">
|
<dept-move-form ref="DeptMove" />
|
||||||
<el-button
|
</cl-crud>
|
||||||
v-permission="service.base.sys.user.permission.move"
|
</template>
|
||||||
text
|
</cl-view-group>
|
||||||
bg
|
|
||||||
@click="toMove(scope.row)"
|
|
||||||
>转移</el-button
|
|
||||||
>
|
|
||||||
</template>
|
|
||||||
</cl-table>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<el-row>
|
|
||||||
<cl-flex1 />
|
|
||||||
<cl-pagination />
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<cl-upsert ref="Upsert" />
|
|
||||||
<dept-move-form ref="DeptMove" />
|
|
||||||
</cl-crud>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { useTable, useUpsert, useCrud } from "@cool-vue/crud";
|
import { useTable, useUpsert, useCrud } from "@cool-vue/crud";
|
||||||
import { reactive, ref, watch } from "vue";
|
import { computed, reactive, ref } from "vue";
|
||||||
import { ArrowLeft, ArrowRight } from "@element-plus/icons-vue";
|
|
||||||
import { useCool } from "/@/cool";
|
import { useCool } from "/@/cool";
|
||||||
import { useBase } from "/$/base";
|
import { useBase } from "/$/base";
|
||||||
import DeptMoveForm from "./components/dept-move";
|
import DeptMoveForm from "./components/dept-move";
|
||||||
import DeptTree from "./components/dept-tree.vue";
|
import DeptTree from "./components/dept-tree.vue";
|
||||||
|
|
||||||
const { service } = useCool();
|
const { service, refs, setRefs } = useCool();
|
||||||
const { app } = useBase();
|
const { app } = useBase();
|
||||||
|
|
||||||
const DeptMove = ref<any>();
|
const DeptMove = ref<any>();
|
||||||
@ -108,6 +92,11 @@ const selects = reactive<any>({
|
|||||||
ids: []
|
ids: []
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 标题
|
||||||
|
const title = computed(() => {
|
||||||
|
return `成员列表(${selects.dept?.name || ""})`;
|
||||||
|
});
|
||||||
|
|
||||||
// cl-crud 配置
|
// cl-crud 配置
|
||||||
const Crud = useCrud({
|
const Crud = useCrud({
|
||||||
service: service.base.sys.user
|
service: service.base.sys.user
|
||||||
@ -361,9 +350,7 @@ function onDeptRowClick({ item, ids }: any) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 收起
|
// 收起
|
||||||
if (app.browser.isMini) {
|
refs.value.viewGroup.checkExpand(false);
|
||||||
isExpand.value = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 部门下新增成员
|
// 部门下新增成员
|
||||||
@ -373,11 +360,6 @@ function onDeptUserAdd(item: any) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// 是否显示部门
|
|
||||||
function deptExpand() {
|
|
||||||
isExpand.value = !isExpand.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 移动成员
|
// 移动成员
|
||||||
async function toMove(e?: any) {
|
async function toMove(e?: any) {
|
||||||
let ids = [];
|
let ids = [];
|
||||||
@ -390,89 +372,4 @@ async function toMove(e?: any) {
|
|||||||
|
|
||||||
DeptMove.value.toMove(ids);
|
DeptMove.value.toMove(ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 监听屏幕大小变化
|
|
||||||
watch(
|
|
||||||
() => app.browser.isMini,
|
|
||||||
(val: boolean) => {
|
|
||||||
isExpand.value = !val;
|
|
||||||
},
|
|
||||||
{
|
|
||||||
immediate: true
|
|
||||||
}
|
|
||||||
);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.view-user {
|
|
||||||
.pane {
|
|
||||||
display: flex;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dept {
|
|
||||||
height: 100%;
|
|
||||||
width: 300px;
|
|
||||||
max-width: calc(100% - 50px);
|
|
||||||
background-color: #fff;
|
|
||||||
transition: width 0.3s;
|
|
||||||
margin-right: 10px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
|
|
||||||
&._collapse {
|
|
||||||
margin-right: 0;
|
|
||||||
width: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.user {
|
|
||||||
width: calc(100% - 310px);
|
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
&__header {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
height: 40px;
|
|
||||||
position: relative;
|
|
||||||
background-color: #fff;
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-size: 14px;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
font-size: 18px;
|
|
||||||
cursor: pointer;
|
|
||||||
background-color: #fff;
|
|
||||||
height: 40px;
|
|
||||||
width: 80px;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.dept,
|
|
||||||
.user {
|
|
||||||
overflow: hidden;
|
|
||||||
&__container {
|
|
||||||
height: calc(100% - 40px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
|
||||||
.dept {
|
|
||||||
width: calc(100% - 100px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
<cl-add-btn />
|
<cl-add-btn />
|
||||||
<el-button @click="openForm">自定义表单</el-button>
|
<el-button @click="openForm">自定义表单</el-button>
|
||||||
|
|
||||||
|
<cl-filter label="字典">
|
||||||
|
<cl-select :options="dict.get('sex')"></cl-select>
|
||||||
|
</cl-filter>
|
||||||
|
|
||||||
<cl-flex1></cl-flex1>
|
<cl-flex1></cl-flex1>
|
||||||
<cl-column-custom :columns="Table?.columns" />
|
<cl-column-custom :columns="Table?.columns" />
|
||||||
<cl-filter-group :items="filter.items"></cl-filter-group>
|
<cl-filter-group :items="filter.items"></cl-filter-group>
|
||||||
@ -44,6 +48,11 @@
|
|||||||
|
|
||||||
<script lang="tsx" setup>
|
<script lang="tsx" setup>
|
||||||
import { useCrud, useUpsert, useTable, useForm, useAdvSearch } from "@cool-vue/crud";
|
import { useCrud, useUpsert, useTable, useForm, useAdvSearch } from "@cool-vue/crud";
|
||||||
|
import { useDict } from "/$/dict";
|
||||||
|
|
||||||
|
const { dict } = useDict();
|
||||||
|
|
||||||
|
dict.refresh(["sex"]);
|
||||||
|
|
||||||
const Crud = useCrud(
|
const Crud = useCrud(
|
||||||
{
|
{
|
||||||
@ -64,6 +73,14 @@ const Upsert = useUpsert({
|
|||||||
name: "el-input"
|
name: "el-input"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: "认证类型",
|
||||||
|
prop: "authType",
|
||||||
|
component: {
|
||||||
|
name: "el-select",
|
||||||
|
options: dict.get("authType")
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: "tabs",
|
type: "tabs",
|
||||||
props: {
|
props: {
|
||||||
|
255
src/modules/dict/components/group.vue
Normal file
255
src/modules/dict/components/group.vue
Normal file
@ -0,0 +1,255 @@
|
|||||||
|
<template>
|
||||||
|
<div class="dict-group" v-loading="loading">
|
||||||
|
<div class="head">
|
||||||
|
<span>类型</span>
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
bg
|
||||||
|
size="small"
|
||||||
|
v-if="getPerm(service.dict.type, 'add')"
|
||||||
|
@click="edit()"
|
||||||
|
>添加</el-button
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="scroller1">
|
||||||
|
<li
|
||||||
|
v-for="(item, index) in list"
|
||||||
|
:key="index"
|
||||||
|
class="item"
|
||||||
|
:class="{
|
||||||
|
'is-active': active == item.id
|
||||||
|
}"
|
||||||
|
@click="select(item)"
|
||||||
|
@contextmenu="
|
||||||
|
(e) => {
|
||||||
|
onContextMenu(e, item);
|
||||||
|
}
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<span>{{ item.name }} - {{ item.key }}</span>
|
||||||
|
<el-icon v-show="active == item.id"><ArrowRightBold /></el-icon>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<el-empty v-if="list.length == 0" :image-size="80" />
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- 表单 -->
|
||||||
|
<cl-form ref="Form"></cl-form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ContextMenu, useForm } from "@cool-vue/crud";
|
||||||
|
import { ElMessage, ElMessageBox } from "element-plus";
|
||||||
|
import { inject, onMounted, ref } from "vue";
|
||||||
|
import { useCool } from "/@/cool";
|
||||||
|
import { ArrowRightBold } from "@element-plus/icons-vue";
|
||||||
|
import { getPerm } from "/$/base";
|
||||||
|
|
||||||
|
const { service } = useCool();
|
||||||
|
const Form = useForm();
|
||||||
|
|
||||||
|
// 字典
|
||||||
|
const dict = inject<any>("dict");
|
||||||
|
|
||||||
|
// 选中
|
||||||
|
const active = ref("");
|
||||||
|
|
||||||
|
// 列表
|
||||||
|
const list = ref<any[]>([]);
|
||||||
|
|
||||||
|
// 加载状态
|
||||||
|
const loading = ref(false);
|
||||||
|
|
||||||
|
// 刷新
|
||||||
|
async function refresh() {
|
||||||
|
loading.value = true;
|
||||||
|
|
||||||
|
await service.dict.type.list().then((res) => {
|
||||||
|
list.value = res;
|
||||||
|
|
||||||
|
if (!active.value) {
|
||||||
|
select(res[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
loading.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 选择
|
||||||
|
function select(item: any) {
|
||||||
|
active.value = item?.id;
|
||||||
|
|
||||||
|
// 设置
|
||||||
|
dict.setGroup(item);
|
||||||
|
|
||||||
|
// 刷新
|
||||||
|
dict.refresh({
|
||||||
|
typeId: active.value,
|
||||||
|
page: 1
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 标记
|
||||||
|
function edit(item?: any) {
|
||||||
|
Form.value?.open({
|
||||||
|
title: item ? "编辑类型" : "添加类型",
|
||||||
|
width: "500px",
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: "名称",
|
||||||
|
prop: "name",
|
||||||
|
component: {
|
||||||
|
name: "el-input",
|
||||||
|
props: {
|
||||||
|
maxlength: 20
|
||||||
|
}
|
||||||
|
},
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Key",
|
||||||
|
prop: "key",
|
||||||
|
component: {
|
||||||
|
name: "el-input",
|
||||||
|
props: {
|
||||||
|
maxlength: 20
|
||||||
|
}
|
||||||
|
},
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
form: {
|
||||||
|
...item
|
||||||
|
},
|
||||||
|
on: {
|
||||||
|
submit(data, { close, done }) {
|
||||||
|
service.dict.type[item ? "update" : "add"](data)
|
||||||
|
.then(() => {
|
||||||
|
ElMessage.success("保存成功");
|
||||||
|
close();
|
||||||
|
refresh();
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
ElMessage.error(err.message);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 右键
|
||||||
|
function onContextMenu(e: any, item: any) {
|
||||||
|
ContextMenu.open(e, {
|
||||||
|
hover: {
|
||||||
|
target: "item"
|
||||||
|
},
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
label: "编辑",
|
||||||
|
hidden: !getPerm(service.dict.type, ["update"]),
|
||||||
|
callback(done) {
|
||||||
|
done();
|
||||||
|
edit(item);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "删除",
|
||||||
|
hidden: !getPerm(service.dict.type, ["delete"]),
|
||||||
|
callback(done) {
|
||||||
|
done();
|
||||||
|
|
||||||
|
ElMessageBox.confirm("是否要删除该类型?", "提示", {
|
||||||
|
type: "warning"
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
service.dict.type
|
||||||
|
.delete({
|
||||||
|
ids: [item.id]
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
ElMessage.success("删除成功");
|
||||||
|
|
||||||
|
// 刷新列表
|
||||||
|
await refresh();
|
||||||
|
|
||||||
|
// 删除当前
|
||||||
|
if (active.value == item.id) {
|
||||||
|
select(list.value[0]);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
ElMessage.error(err.message);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
refresh();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.dict-group {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.head {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: 40px;
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 0 10px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
max-height: calc(100% - 40px);
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
overflow: hidden auto;
|
||||||
|
|
||||||
|
li {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
list-style: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 10px 35px 10px 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: #666;
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
|
||||||
|
.el-icon {
|
||||||
|
position: absolute;
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-active {
|
||||||
|
background-color: var(--color-primary);
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
7
src/modules/dict/index.ts
Normal file
7
src/modules/dict/index.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { useStore } from "./store";
|
||||||
|
|
||||||
|
export function useDict() {
|
||||||
|
return {
|
||||||
|
...useStore()
|
||||||
|
};
|
||||||
|
}
|
52
src/modules/dict/store/dict.ts
Normal file
52
src/modules/dict/store/dict.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { sortBy } from "lodash";
|
||||||
|
import { defineStore } from "pinia";
|
||||||
|
import { computed, reactive } from "vue";
|
||||||
|
import { isDev, useCool } from "/@/cool";
|
||||||
|
|
||||||
|
declare interface Data {
|
||||||
|
[key: string]: Array<{ label: string; value: any }>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useDictStore = defineStore("dict", () => {
|
||||||
|
const { service } = useCool();
|
||||||
|
|
||||||
|
// 对象数据
|
||||||
|
const data = reactive<Data>({});
|
||||||
|
|
||||||
|
// 获取
|
||||||
|
function get(name: string) {
|
||||||
|
return computed(() => data[name]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 刷新
|
||||||
|
function refresh(types?: string[]) {
|
||||||
|
service.dict.info
|
||||||
|
.data({
|
||||||
|
types
|
||||||
|
})
|
||||||
|
.then((res) => {
|
||||||
|
const d: any = {};
|
||||||
|
|
||||||
|
for (const i in res) {
|
||||||
|
d[i] = sortBy(res[i], "orderNum").map((e) => {
|
||||||
|
return {
|
||||||
|
label: e.name,
|
||||||
|
value: e.id
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.assign(data, d);
|
||||||
|
|
||||||
|
if (isDev) {
|
||||||
|
console.log("字典数据", data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
data,
|
||||||
|
get,
|
||||||
|
refresh
|
||||||
|
};
|
||||||
|
});
|
9
src/modules/dict/store/index.ts
Normal file
9
src/modules/dict/store/index.ts
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import { useDictStore } from "./dict";
|
||||||
|
|
||||||
|
export function useStore() {
|
||||||
|
const dict = useDictStore();
|
||||||
|
|
||||||
|
return {
|
||||||
|
dict
|
||||||
|
};
|
||||||
|
}
|
120
src/modules/dict/views/list.vue
Normal file
120
src/modules/dict/views/list.vue
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<template>
|
||||||
|
<cl-view-group :title="title">
|
||||||
|
<template #left>
|
||||||
|
<Group />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template #right>
|
||||||
|
<cl-crud ref="Crud">
|
||||||
|
<el-row>
|
||||||
|
<!-- 刷新按钮 -->
|
||||||
|
<cl-refresh-btn />
|
||||||
|
<!-- 新增按钮 -->
|
||||||
|
<cl-add-btn :disabled="!group" />
|
||||||
|
<!-- 删除按钮 -->
|
||||||
|
<cl-multi-delete-btn />
|
||||||
|
<cl-flex1 />
|
||||||
|
<!-- 关键字搜索 -->
|
||||||
|
<cl-search-key />
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<!-- 数据表格 -->
|
||||||
|
<cl-table
|
||||||
|
ref="Table"
|
||||||
|
:default-sort="{
|
||||||
|
prop: 'orderNum',
|
||||||
|
order: 'descending'
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<cl-flex1 />
|
||||||
|
<!-- 分页控件 -->
|
||||||
|
<cl-pagination />
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<!-- 新增、编辑 -->
|
||||||
|
<cl-upsert ref="Upsert" />
|
||||||
|
</cl-crud>
|
||||||
|
</template>
|
||||||
|
</cl-view-group>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { useCrud, useTable, useUpsert } from "@cool-vue/crud";
|
||||||
|
import { useCool } from "/@/cool";
|
||||||
|
import Group from "../components/group.vue";
|
||||||
|
import { computed, provide, ref } from "vue";
|
||||||
|
|
||||||
|
const { service, named } = useCool();
|
||||||
|
|
||||||
|
named("dict-list");
|
||||||
|
|
||||||
|
// 组
|
||||||
|
const group = ref();
|
||||||
|
|
||||||
|
// 标题
|
||||||
|
const title = computed(() => {
|
||||||
|
return group.value ? `字典列表(${group.value.name})` : "字典列表";
|
||||||
|
});
|
||||||
|
|
||||||
|
// cl-upsert 配置
|
||||||
|
const Upsert = useUpsert({
|
||||||
|
items: [
|
||||||
|
{ label: "名称", prop: "name", required: true, component: { name: "el-input" } },
|
||||||
|
{
|
||||||
|
label: "排序",
|
||||||
|
prop: "orderNum",
|
||||||
|
value: 1,
|
||||||
|
component: { name: "el-input-number", props: { min: 1 } }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "备注",
|
||||||
|
prop: "remark",
|
||||||
|
component: { name: "el-input", props: { type: "textarea", rows: 4 } }
|
||||||
|
}
|
||||||
|
],
|
||||||
|
onSubmit(_, data, { next }) {
|
||||||
|
next({
|
||||||
|
...data,
|
||||||
|
typeId: group.value.id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// cl-table 配置
|
||||||
|
const Table = useTable({
|
||||||
|
columns: [
|
||||||
|
{ type: "selection" },
|
||||||
|
{ label: "名称", prop: "name" },
|
||||||
|
{ label: "排序", prop: "orderNum", sortable: "custom" },
|
||||||
|
{ label: "备注", prop: "remark", showOverflowTooltip: true },
|
||||||
|
{ label: "创建时间", prop: "createTime", sortable: "custom" },
|
||||||
|
{ label: "更新时间", prop: "updateTime", sortable: "custom" },
|
||||||
|
{ type: "op", buttons: ["edit", "delete"] }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
// cl-crud 配置
|
||||||
|
const Crud = useCrud({
|
||||||
|
service: service.dict.info
|
||||||
|
});
|
||||||
|
|
||||||
|
// 刷新
|
||||||
|
function refresh(params?: any) {
|
||||||
|
Crud.value?.refresh(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置组
|
||||||
|
function setGroup(data: any) {
|
||||||
|
group.value = data;
|
||||||
|
}
|
||||||
|
|
||||||
|
provide("dict", {
|
||||||
|
group,
|
||||||
|
refresh,
|
||||||
|
setGroup
|
||||||
|
});
|
||||||
|
</script>
|
@ -984,10 +984,10 @@
|
|||||||
"@babel/helper-validator-identifier" "^7.16.7"
|
"@babel/helper-validator-identifier" "^7.16.7"
|
||||||
to-fast-properties "^2.0.0"
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@cool-vue/crud@^5.2.7":
|
"@cool-vue/crud@^5.2.10":
|
||||||
version "5.2.7"
|
version "5.2.10"
|
||||||
resolved "https://registry.npmjs.org/@cool-vue/crud/-/crud-5.2.7.tgz#4b3b693887dc077e839b531b7c7b8b2b94ee8c89"
|
resolved "https://registry.npmjs.org/@cool-vue/crud/-/crud-5.2.10.tgz#e5aed2c7520372dba497787e5e6528ef48a2ace2"
|
||||||
integrity sha512-1HkYUs45vTxtZ3pYmlshnQF0YH6xYAL0txaPGN0QclIZ1DHtoyQBLfouZ+mJSOMfUnj8+RuOKlieDJRDhOK7Yg==
|
integrity sha512-bsQSglIW9D1R/5qSDAnDNTKhp5tYQQJX7t0onD7ZIEifDyErSx3NJUChPiTZlS3N+B7/Az4676rPXzv3W3oWvw==
|
||||||
dependencies:
|
dependencies:
|
||||||
array.prototype.flat "^1.2.4"
|
array.prototype.flat "^1.2.4"
|
||||||
core-js "^3.21.1"
|
core-js "^3.21.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user