diff --git a/.eslintrc.js b/.eslintrc.js index bf60e74..f66ba87 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,7 +5,7 @@ * 原生js-eslint,官方配置文档: https://cn.eslint.org/docs/rules * vue,官方配置文档: https://eslint.vuejs.org/rules * typescript,官方配置文档: https://typescript-eslint.io/rules - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/config/themeConfig.ts b/build/config/themeConfig.ts index c72bca0..5593d98 100644 --- a/build/config/themeConfig.ts +++ b/build/config/themeConfig.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 主题颜色动态生成配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/constant.ts b/build/constant.ts index 9311561..5c3c1ed 100644 --- a/build/constant.ts +++ b/build/constant.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 生产环境配置全局常量 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/generate/generateModifyVars.ts b/build/generate/generateModifyVars.ts index 7789965..008c6e3 100644 --- a/build/generate/generateModifyVars.ts +++ b/build/generate/generateModifyVars.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 生成less修改的变量 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/generate/icon/index.ts b/build/generate/icon/index.ts index 786e6d9..ef8ac39 100644 --- a/build/generate/icon/index.ts +++ b/build/generate/icon/index.ts @@ -7,7 +7,7 @@ * 缺点: 在局域网或者无法访问到外网的环境中图标显示不出来 * 离线: 该方式会在打包的时候将图标选择器的图标全部打包到js内,在使用的时候不会额外的请求在线图标 * 缺点: 打包体积会偏大,具体的体积增加得看前面选择图标集的时候选择的图标数量的多少决定 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/getConfigFileName.ts b/build/getConfigFileName.ts index f06511f..4f6d1a3 100644 --- a/build/getConfigFileName.ts +++ b/build/getConfigFileName.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 获取外部配置文件变量名 * 主要用于控制台输出额外的发布信息 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/script/buildConf.ts b/build/script/buildConf.ts index d27804f..3857336 100644 --- a/build/script/buildConf.ts +++ b/build/script/buildConf.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 用于打包时生成额外的配置文件,该文件可以配置一些全局变量,这样就可以直接在外部更改,无需重新打包 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/script/postBuild.ts b/build/script/postBuild.ts index 18d53be..31ba957 100644 --- a/build/script/postBuild.ts +++ b/build/script/postBuild.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 发布构建成功后附加一些处理逻辑操作 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/utils.ts b/build/utils.ts index dd87db5..e72f6b6 100644 --- a/build/utils.ts +++ b/build/utils.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 打包工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/plugin/compress.ts b/build/vite/plugin/compress.ts index 9ad360c..023dd86 100644 --- a/build/vite/plugin/compress.ts +++ b/build/vite/plugin/compress.ts @@ -3,7 +3,7 @@ * @description: vite-plugin-compression配置 * 用于打包输出gzip todo: 注意这在Vite中不能正常工作,具体原因还在调查中 * 文档: https://github.com/anncwb/vite-plugin-compression - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/vite/plugin/html.ts b/build/vite/plugin/html.ts index 38d902c..f80a032 100644 --- a/build/vite/plugin/html.ts +++ b/build/vite/plugin/html.ts @@ -3,7 +3,7 @@ * @description: vite-plugin-html配置 * 在index.html提供压缩和基于ejs模板功能 * 文档: https://github.com/anncwb/vite-plugin-html - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/plugin/imagemin.ts b/build/vite/plugin/imagemin.ts index efea66b..140c3ff 100644 --- a/build/vite/plugin/imagemin.ts +++ b/build/vite/plugin/imagemin.ts @@ -3,7 +3,7 @@ * @description: vite-plugin-imagemin配置 * 提供压缩图片资源的功能 * 文档: https://github.com/anncwb/vite-plugin-imagemin - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/vite/plugin/index.ts b/build/vite/plugin/index.ts index d491bcc..0197b5d 100644 --- a/build/vite/plugin/index.ts +++ b/build/vite/plugin/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: vite插件统一管理 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/plugin/pwa.ts b/build/vite/plugin/pwa.ts index 2c4d3fe..ca5f603 100644 --- a/build/vite/plugin/pwa.ts +++ b/build/vite/plugin/pwa.ts @@ -6,7 +6,7 @@ * 了解更多信息: https://juejin.cn/post/6844903461645991943 * 目前主要用来开启service-worker让他来做缓存的: https://developer.mozilla.org/zh-CN/docs/Web/API/Service_Worker_API/Using_Service_Workers * 文档: https://github.com/antfu/vite-plugin-pwa - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/build/vite/plugin/styleImport.ts b/build/vite/plugin/styleImport.ts index 6651b31..98b28fc 100644 --- a/build/vite/plugin/styleImport.ts +++ b/build/vite/plugin/styleImport.ts @@ -3,7 +3,7 @@ * @description: vite-plugin-style-import配置 * 提供对vite的按需引入组件库样式功能 * 文档: https://github.com/anncwb/vite-plugin-style-import - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/plugin/svgSprite.ts b/build/vite/plugin/svgSprite.ts index 0a3a17c..15ecfd3 100644 --- a/build/vite/plugin/svgSprite.ts +++ b/build/vite/plugin/svgSprite.ts @@ -4,7 +4,7 @@ * 用于快速创建SVG精灵的Vite插件 * SVG精灵(它是由几个小图形文件(SVG 图标、设计元素)合并而成的图标系统) * 文档: https://github.com/anncwb/vite-plugin-svg-icons - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/plugin/theme.ts b/build/vite/plugin/theme.ts index 3ab14c4..8f7bd06 100644 --- a/build/vite/plugin/theme.ts +++ b/build/vite/plugin/theme.ts @@ -3,7 +3,7 @@ * @description: vite-plugin-theme配置 * 提供动态切换ant-design主题功能(默认模式,暗黑模式) * 文档: https://github.com/anncwb/vite-plugin-theme - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/plugin/visualizer.ts b/build/vite/plugin/visualizer.ts index 5a86106..3fc6f0f 100644 --- a/build/vite/plugin/visualizer.ts +++ b/build/vite/plugin/visualizer.ts @@ -3,7 +3,7 @@ * @description: rollup-plugin-visualizer配置 * 提供分析依赖查看哪些模块占用了空间 * 文档: https://github.com/btd/rollup-plugin-visualizer - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/build/vite/proxy.ts b/build/vite/proxy.ts index d2a22f5..2a960bf 100644 --- a/build/vite/proxy.ts +++ b/build/vite/proxy.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 用于解析 .env.development 代理配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/5 */ diff --git a/postcss.config.js b/postcss.config.js index 7b9a2c1..2944bf6 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -5,7 +5,7 @@ * 目前用到的插件: * 增加代码可读性 → postcss/autoprefixer * 官网文档: https://github.com/postcss/autoprefixer - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ diff --git a/src/api/common/base/constant/index.ts b/src/api/common/base/constant/index.ts index fd9ba27..c655f4d 100644 --- a/src/api/common/base/constant/index.ts +++ b/src/api/common/base/constant/index.ts @@ -1,6 +1,6 @@ /** * @program: kicc-ui * @description: 基础相关常量 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/common/base/entity/index.ts b/src/api/common/base/entity/index.ts index 19c1d54..f02a4eb 100644 --- a/src/api/common/base/entity/index.ts +++ b/src/api/common/base/entity/index.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 基础相关实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/common/base/enums/index.ts b/src/api/common/base/enums/index.ts index 6bd81c7..2ba1583 100644 --- a/src/api/common/base/enums/index.ts +++ b/src/api/common/base/enums/index.ts @@ -1,6 +1,6 @@ /** * @program: kicc-ui * @description: 基础相关枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/common/base/exception/index.ts b/src/api/common/base/exception/index.ts index acee37d..437499b 100644 --- a/src/api/common/base/exception/index.ts +++ b/src/api/common/base/exception/index.ts @@ -2,6 +2,6 @@ * @program: kicc-ui * @description: 基础相关异常 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/common/data/constant/index.ts b/src/api/common/data/constant/index.ts index 9e68bae..ced3826 100644 --- a/src/api/common/data/constant/index.ts +++ b/src/api/common/data/constant/index.ts @@ -1,6 +1,6 @@ /** * @program: kicc-ui * @description: 数据相关常量 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/common/data/entity/index.ts b/src/api/common/data/entity/index.ts index 186a4ed..09a3e81 100644 --- a/src/api/common/data/entity/index.ts +++ b/src/api/common/data/entity/index.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 数据相关实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/common/data/enums/index.ts b/src/api/common/data/enums/index.ts index 4188203..3038b65 100644 --- a/src/api/common/data/enums/index.ts +++ b/src/api/common/data/enums/index.ts @@ -1,6 +1,6 @@ /** * @program: kicc-ui * @description: 数据相关枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/platform/common/controller/doctor.ts b/src/api/platform/common/controller/doctor.ts index b112865..ad9f8d3 100644 --- a/src/api/platform/common/controller/doctor.ts +++ b/src/api/platform/common/controller/doctor.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { DoctorParams, Doctor, DoctorResult } from '/@/api/platform/common/entity/doctor'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/hospital.ts b/src/api/platform/common/controller/hospital.ts index 8bf1a64..8c5153f 100644 --- a/src/api/platform/common/controller/hospital.ts +++ b/src/api/platform/common/controller/hospital.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { HospitalParams, Hospital, HospitalResult } from '/@/api/platform/common/entity/hospital'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/mapLogistic.ts b/src/api/platform/common/controller/mapLogistic.ts index 5b86a94..22ca183 100644 --- a/src/api/platform/common/controller/mapLogistic.ts +++ b/src/api/platform/common/controller/mapLogistic.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { MapLogisticParams, MapLogistic, MapLogisticResult } from '../entity/mapLogistic'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/mapLogisticPoint.ts b/src/api/platform/common/controller/mapLogisticPoint.ts index af227e1..bdbfe46 100644 --- a/src/api/platform/common/controller/mapLogisticPoint.ts +++ b/src/api/platform/common/controller/mapLogisticPoint.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { MapLogisticPointParams, MapLogisticPoint, MapLogisticPointResult } from '../entity/mapLogisticPoint'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/mapTaskPreset.ts b/src/api/platform/common/controller/mapTaskPreset.ts index 4d56c3d..998586a 100644 --- a/src/api/platform/common/controller/mapTaskPreset.ts +++ b/src/api/platform/common/controller/mapTaskPreset.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { MapTaskPresetParams, MapTaskPreset, MapTaskPresetResult } from '../entity/mapTaskPreset'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/office.ts b/src/api/platform/common/controller/office.ts index 98c53d2..4dcba2e 100644 --- a/src/api/platform/common/controller/office.ts +++ b/src/api/platform/common/controller/office.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { OfficeParams, Office, OfficeResult } from '/@/api/platform/common/entity/office'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/project.ts b/src/api/platform/common/controller/project.ts index 090897d..4e88eab 100644 --- a/src/api/platform/common/controller/project.ts +++ b/src/api/platform/common/controller/project.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { ProjectParams, Project, ProjectResult } from '../entity/project'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/pushApplication.ts b/src/api/platform/common/controller/pushApplication.ts index f4fa988..278db80 100644 --- a/src/api/platform/common/controller/pushApplication.ts +++ b/src/api/platform/common/controller/pushApplication.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { PushApplication, PushApplicationParams, PushApplicationResult } from '/@/api/platform/common/entity/pushApplication'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/pushBlacklist.ts b/src/api/platform/common/controller/pushBlacklist.ts index eee649a..2f6d52e 100644 --- a/src/api/platform/common/controller/pushBlacklist.ts +++ b/src/api/platform/common/controller/pushBlacklist.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { PushBlacklist, PushBlacklistParams, PushBlacklistResult } from '/@/api/platform/common/entity/pushBlacklist'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/pushChatGroup.ts b/src/api/platform/common/controller/pushChatGroup.ts index 339e348..dc09440 100644 --- a/src/api/platform/common/controller/pushChatGroup.ts +++ b/src/api/platform/common/controller/pushChatGroup.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { PushChatGroup, PushChatGroupParams, PushChatGroupResult } from '/@/api/platform/common/entity/pushChatGroup'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/pushChatGroupType.ts b/src/api/platform/common/controller/pushChatGroupType.ts index 257b291..8a39c64 100644 --- a/src/api/platform/common/controller/pushChatGroupType.ts +++ b/src/api/platform/common/controller/pushChatGroupType.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { PushChatGroupType, PushChatGroupParams, PushChatTypeResult } from '/@/api/platform/common/entity/pushChatGroupType'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/controller/pushChatMessage.ts b/src/api/platform/common/controller/pushChatMessage.ts index 4b8e367..0285e8f 100644 --- a/src/api/platform/common/controller/pushChatMessage.ts +++ b/src/api/platform/common/controller/pushChatMessage.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { PushChatMessage, PushChatMessageParams, PushChatMessageResult } from '/@/api/platform/common/entity/pushChatMessage'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/common/entity/mapLogistic.ts b/src/api/platform/common/entity/mapLogistic.ts index 7f03b18..fcb118e 100644 --- a/src/api/platform/common/entity/mapLogistic.ts +++ b/src/api/platform/common/entity/mapLogistic.ts @@ -2,7 +2,7 @@ /** * @program: kicc-ui * @description: 地图任务主表实体类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @since: 2022/8/24 */ diff --git a/src/api/platform/common/entity/mapLogisticPoint.ts b/src/api/platform/common/entity/mapLogisticPoint.ts index 5a83322..6f95a0f 100644 --- a/src/api/platform/common/entity/mapLogisticPoint.ts +++ b/src/api/platform/common/entity/mapLogisticPoint.ts @@ -2,7 +2,7 @@ /** * @program: kicc-ui * @description: 地图物流任务标记点表实体类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @since: 2022/8/24 */ diff --git a/src/api/platform/common/entity/mapTask.ts b/src/api/platform/common/entity/mapTask.ts index 2044a11..c8ca2be 100644 --- a/src/api/platform/common/entity/mapTask.ts +++ b/src/api/platform/common/entity/mapTask.ts @@ -2,7 +2,7 @@ /** * @program: kicc-ui * @description: 地图任务表实体类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @since: 2022/8/24 */ diff --git a/src/api/platform/common/entity/mapTaskPreset.ts b/src/api/platform/common/entity/mapTaskPreset.ts index 5d88818..64517f2 100644 --- a/src/api/platform/common/entity/mapTaskPreset.ts +++ b/src/api/platform/common/entity/mapTaskPreset.ts @@ -2,7 +2,7 @@ /** * @program: kicc-ui * @description: 地图任务交接预设表实体类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @since: 2022/8/24 */ diff --git a/src/api/platform/core/controller/menu.ts b/src/api/platform/core/controller/menu.ts index 7f99607..a8cdf1d 100644 --- a/src/api/platform/core/controller/menu.ts +++ b/src/api/platform/core/controller/menu.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { MenuRouteResult } from '/@/api/platform/core/entity/menu'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/core/controller/upload.ts b/src/api/platform/core/controller/upload.ts index 2039d21..50753dd 100644 --- a/src/api/platform/core/controller/upload.ts +++ b/src/api/platform/core/controller/upload.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { UploadResult } from '../entity/upload'; import type { UploadFileParams } from '/#/axios'; diff --git a/src/api/platform/core/controller/user.ts b/src/api/platform/core/controller/user.ts index d644bdb..9417738 100644 --- a/src/api/platform/core/controller/user.ts +++ b/src/api/platform/core/controller/user.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { Captcha, User, LoginParams, TokenEnhancer } from '../entity/user'; diff --git a/src/api/platform/core/entity/menu.ts b/src/api/platform/core/entity/menu.ts index 5a6a94c..28ce971 100644 --- a/src/api/platform/core/entity/menu.ts +++ b/src/api/platform/core/entity/menu.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 菜单路由实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { AppRouteRecordRaw } from '/@/router/types'; diff --git a/src/api/platform/core/entity/upload.ts b/src/api/platform/core/entity/upload.ts index b8069c0..0a2e7ad 100644 --- a/src/api/platform/core/entity/upload.ts +++ b/src/api/platform/core/entity/upload.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 文件上传实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/platform/core/entity/user.ts b/src/api/platform/core/entity/user.ts index b9ade5a..7cd6c10 100644 --- a/src/api/platform/core/entity/user.ts +++ b/src/api/platform/core/entity/user.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 核心用户实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { CommonEntity } from '/@/api/common/data/entity'; diff --git a/src/api/platform/monitor/controller/operLog.ts b/src/api/platform/monitor/controller/operLog.ts index 8f8390e..0fbd8e1 100644 --- a/src/api/platform/monitor/controller/operLog.ts +++ b/src/api/platform/monitor/controller/operLog.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { OperLogParams, OperLog, OperLogResult } from '/@/api/platform/monitor/entity/operLog'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/monitor/controller/token.ts b/src/api/platform/monitor/controller/token.ts index 66138a5..05b8c10 100644 --- a/src/api/platform/monitor/controller/token.ts +++ b/src/api/platform/monitor/controller/token.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { TokenParams, TokenResult } from '/@/api/platform/monitor/entity/token'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/monitor/entity/operLog.ts b/src/api/platform/monitor/entity/operLog.ts index 01f1281..be9cf23 100644 --- a/src/api/platform/monitor/entity/operLog.ts +++ b/src/api/platform/monitor/entity/operLog.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 操作日志实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/monitor/entity/token.ts b/src/api/platform/monitor/entity/token.ts index abb90b4..74c46cb 100644 --- a/src/api/platform/monitor/entity/token.ts +++ b/src/api/platform/monitor/entity/token.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 令牌实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/controller/client.ts b/src/api/platform/system/controller/client.ts index b960ec6..5f3c675 100644 --- a/src/api/platform/system/controller/client.ts +++ b/src/api/platform/system/controller/client.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { Client, ClientParams, ClientResult } from '/@/api/platform/system/entity/client'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/config.ts b/src/api/platform/system/controller/config.ts index 7f6b151..523570c 100644 --- a/src/api/platform/system/controller/config.ts +++ b/src/api/platform/system/controller/config.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { ConfigParams, Config, ConfigResult } from '/@/api/platform/system/entity/config'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/dept.ts b/src/api/platform/system/controller/dept.ts index dba2070..15f6109 100644 --- a/src/api/platform/system/controller/dept.ts +++ b/src/api/platform/system/controller/dept.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { DeptParams, Dept } from '/@/api/platform/system/entity/dept'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/dict.ts b/src/api/platform/system/controller/dict.ts index 1b96cfe..1ef37f1 100644 --- a/src/api/platform/system/controller/dict.ts +++ b/src/api/platform/system/controller/dict.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { DictParams, Dict, DictResult } from '/@/api/platform/system/entity/dict'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/dictdata.ts b/src/api/platform/system/controller/dictdata.ts index 417c8c8..e4ebb88 100644 --- a/src/api/platform/system/controller/dictdata.ts +++ b/src/api/platform/system/controller/dictdata.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { DictDataParams, DictData, DictDataResult } from '/@/api/platform/system/entity/dictData'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/file.ts b/src/api/platform/system/controller/file.ts index 94d9e4d..0a8bd21 100644 --- a/src/api/platform/system/controller/file.ts +++ b/src/api/platform/system/controller/file.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { FileParams, FileResult } from '/@/api/platform/system/entity/file'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/menu.ts b/src/api/platform/system/controller/menu.ts index f60ecc0..c4a3c54 100644 --- a/src/api/platform/system/controller/menu.ts +++ b/src/api/platform/system/controller/menu.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { MenuParams, Menu } from '/@/api/platform/system/entity/menu'; import type { ResultVo } from '/@/api/common/base/entity'; diff --git a/src/api/platform/system/controller/region.ts b/src/api/platform/system/controller/region.ts index d77c627..3330e12 100644 --- a/src/api/platform/system/controller/region.ts +++ b/src/api/platform/system/controller/region.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { RegionParams, Region, RegionResult } from '/@/api/platform/system/entity/region'; import { ResultVo } from '/@/api/common/base/entity'; diff --git a/src/api/platform/system/controller/role.ts b/src/api/platform/system/controller/role.ts index 95dca9f..7bdb8bb 100644 --- a/src/api/platform/system/controller/role.ts +++ b/src/api/platform/system/controller/role.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { Role, RoleParams, RoleResult } from '/@/api/platform/system/entity/role'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/tenant.ts b/src/api/platform/system/controller/tenant.ts index 821aa0c..1af0297 100644 --- a/src/api/platform/system/controller/tenant.ts +++ b/src/api/platform/system/controller/tenant.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { Tenant, TenantParams, TenantResult } from '/@/api/platform/system/entity/tenant'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/system/controller/user.ts b/src/api/platform/system/controller/user.ts index 7e95661..3658e60 100644 --- a/src/api/platform/system/controller/user.ts +++ b/src/api/platform/system/controller/user.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import type { UserParams, UserResult } from '/@/api/platform/system/entity/user'; import type { User } from '/@/api/platform/core/entity/user'; diff --git a/src/api/platform/system/entity/client.ts b/src/api/platform/system/entity/client.ts index bbbbde7..7828d4e 100644 --- a/src/api/platform/system/entity/client.ts +++ b/src/api/platform/system/entity/client.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 客户端实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/config.ts b/src/api/platform/system/entity/config.ts index a113c72..1aa8b6b 100644 --- a/src/api/platform/system/entity/config.ts +++ b/src/api/platform/system/entity/config.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 配置实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/dept.ts b/src/api/platform/system/entity/dept.ts index 889e612..3139d58 100644 --- a/src/api/platform/system/entity/dept.ts +++ b/src/api/platform/system/entity/dept.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 部门实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/dict.ts b/src/api/platform/system/entity/dict.ts index 9b2de87..9c4135c 100644 --- a/src/api/platform/system/entity/dict.ts +++ b/src/api/platform/system/entity/dict.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 字典实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/dictData.ts b/src/api/platform/system/entity/dictData.ts index 035f99d..0fcede6 100644 --- a/src/api/platform/system/entity/dictData.ts +++ b/src/api/platform/system/entity/dictData.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 字典数据实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/file.ts b/src/api/platform/system/entity/file.ts index c578a17..1c9137f 100644 --- a/src/api/platform/system/entity/file.ts +++ b/src/api/platform/system/entity/file.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 文件实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/menu.ts b/src/api/platform/system/entity/menu.ts index 1e52367..ac9918d 100644 --- a/src/api/platform/system/entity/menu.ts +++ b/src/api/platform/system/entity/menu.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 菜单实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/region.ts b/src/api/platform/system/entity/region.ts index e2818bf..9069284 100644 --- a/src/api/platform/system/entity/region.ts +++ b/src/api/platform/system/entity/region.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 区域实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/api/platform/system/entity/role.ts b/src/api/platform/system/entity/role.ts index c142ad9..4a2cf44 100644 --- a/src/api/platform/system/entity/role.ts +++ b/src/api/platform/system/entity/role.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 角色实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/tenant.ts b/src/api/platform/system/entity/tenant.ts index 0c45ba5..dc51854 100644 --- a/src/api/platform/system/entity/tenant.ts +++ b/src/api/platform/system/entity/tenant.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 多租户实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/system/entity/user.ts b/src/api/platform/system/entity/user.ts index e92c189..70091a5 100644 --- a/src/api/platform/system/entity/user.ts +++ b/src/api/platform/system/entity/user.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 用户实体类 * 类型定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import type { R } from '/#/axios'; diff --git a/src/api/platform/workflow/extension/controller/formCategory.ts b/src/api/platform/workflow/extension/controller/formCategory.ts index 9ee2e75..cd2f7dd 100644 --- a/src/api/platform/workflow/extension/controller/formCategory.ts +++ b/src/api/platform/workflow/extension/controller/formCategory.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { FormCategory, FormCategoryParams, FormCategoryResult } from '/@/api/platform/workflow/extension/entity/formCategory'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/workflow/extension/controller/formDefinition.ts b/src/api/platform/workflow/extension/controller/formDefinition.ts index b27922f..85695f9 100644 --- a/src/api/platform/workflow/extension/controller/formDefinition.ts +++ b/src/api/platform/workflow/extension/controller/formDefinition.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { FormDefinition, FormDefinitionParams, FormDefinitionResult } from '/@/api/platform/workflow/extension/entity/formDefinition'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/api/platform/workflow/extension/controller/formDefinitionJson.ts b/src/api/platform/workflow/extension/controller/formDefinitionJson.ts index 7238eee..eb07512 100644 --- a/src/api/platform/workflow/extension/controller/formDefinitionJson.ts +++ b/src/api/platform/workflow/extension/controller/formDefinitionJson.ts @@ -1,7 +1,7 @@ /** * 提供api模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { FormDefinitionJsonParams, FormDefinitionJson, FormDefinitionJsonResult } from '/@/api/platform/workflow/extension/entity/formDefinitionJson'; import { defHttp } from '/@/utils/http/axios'; diff --git a/src/assets/styles/color.less b/src/assets/styles/color.less index e682abe..eff23d9 100644 --- a/src/assets/styles/color.less +++ b/src/assets/styles/color.less @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局颜色配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/assets/styles/common.less b/src/assets/styles/common.less index 25b63f5..cc6542b 100644 --- a/src/assets/styles/common.less +++ b/src/assets/styles/common.less @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 公共配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/assets/styles/theme.less b/src/assets/styles/theme.less index f554e49..848b79e 100644 --- a/src/assets/styles/theme.less +++ b/src/assets/styles/theme.less @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局主题样式配置(明亮,暗黑) - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/assets/styles/var/breakpoint.less b/src/assets/styles/var/breakpoint.less index cb282c6..b89aeca 100644 --- a/src/assets/styles/var/breakpoint.less +++ b/src/assets/styles/var/breakpoint.less @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 屏幕断点用于vite:antd-dark-theme插件 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/assets/styles/var/easing.less b/src/assets/styles/var/easing.less index e82657c..e0676df 100644 --- a/src/assets/styles/var/easing.less +++ b/src/assets/styles/var/easing.less @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 动画函数 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/assets/styles/var/index.less b/src/assets/styles/var/index.less index 72336a1..1a1da31 100644 --- a/src/assets/styles/var/index.less +++ b/src/assets/styles/var/index.less @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局样式变量定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/components/AMap/src/amap.data.tsx b/src/components/AMap/src/amap.data.tsx index 74b1a1b..b6824fa 100644 --- a/src/components/AMap/src/amap.data.tsx +++ b/src/components/AMap/src/amap.data.tsx @@ -2,7 +2,7 @@ /** * @program: kicc-ui * @description: 地图静态数据 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/5/22 */ diff --git a/src/components/index.ts b/src/components/index.ts index fea851f..aed387e 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局注册组件 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/26 */ diff --git a/src/directives/clickOutside.ts b/src/directives/clickOutside.ts index 22c4cb8..75881a8 100644 --- a/src/directives/clickOutside.ts +++ b/src/directives/clickOutside.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 点击指令 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/directives/index.ts b/src/directives/index.ts index fff870f..eaf3699 100644 --- a/src/directives/index.ts +++ b/src/directives/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 导出指令注册 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/directives/loading.ts b/src/directives/loading.ts index 6bc9f87..f6a3b5d 100644 --- a/src/directives/loading.ts +++ b/src/directives/loading.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 加载指令 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/directives/permission.ts b/src/directives/permission.ts index ef9a527..b72b5fe 100644 --- a/src/directives/permission.ts +++ b/src/directives/permission.ts @@ -3,7 +3,7 @@ * @description: 权限指令 * 用于组件权限的细粒度控制 * @Example v-auth="xxx" - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/directives/repeatClick.ts b/src/directives/repeatClick.ts index 4c04ed5..6e8dbce 100644 --- a/src/directives/repeatClick.ts +++ b/src/directives/repeatClick.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 防止重复点击 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/directives/ripple/index.ts b/src/directives/ripple/index.ts index 52c2338..ddc7d98 100644 --- a/src/directives/ripple/index.ts +++ b/src/directives/ripple/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 波纹特效指令 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/enums/amapEnum.ts b/src/enums/amapEnum.ts index 2884bd7..53d606b 100644 --- a/src/enums/amapEnum.ts +++ b/src/enums/amapEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 地图常量枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/appEnum.ts b/src/enums/appEnum.ts index 95c4672..bc6946c 100644 --- a/src/enums/appEnum.ts +++ b/src/enums/appEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局应用枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/breakpointEnum.ts b/src/enums/breakpointEnum.ts index 7ace241..27ccbe0 100644 --- a/src/enums/breakpointEnum.ts +++ b/src/enums/breakpointEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 自动检测屏幕断点枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/cacheEnum.ts b/src/enums/cacheEnum.ts index 60b8327..bd492d2 100644 --- a/src/enums/cacheEnum.ts +++ b/src/enums/cacheEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 缓存枚举键 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/exceptionEnum.ts b/src/enums/exceptionEnum.ts index 12ac65f..67b5839 100644 --- a/src/enums/exceptionEnum.ts +++ b/src/enums/exceptionEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 异常相关枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/enums/httpEnum.ts b/src/enums/httpEnum.ts index 994cc70..bbfab59 100644 --- a/src/enums/httpEnum.ts +++ b/src/enums/httpEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 请求枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/menuEnum.ts b/src/enums/menuEnum.ts index 90631f5..6b48482 100644 --- a/src/enums/menuEnum.ts +++ b/src/enums/menuEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 菜单枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/pageEnum.ts b/src/enums/pageEnum.ts index 8001790..f13d197 100644 --- a/src/enums/pageEnum.ts +++ b/src/enums/pageEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 基础页面路由枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/enums/permissionEnum.ts b/src/enums/permissionEnum.ts index 68f32f1..85e8a8f 100644 --- a/src/enums/permissionEnum.ts +++ b/src/enums/permissionEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 用户权限枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2023/4/21 */ diff --git a/src/enums/pushEnum.ts b/src/enums/pushEnum.ts index ca65be8..2208a65 100644 --- a/src/enums/pushEnum.ts +++ b/src/enums/pushEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 推送消息枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2023/4/21 */ diff --git a/src/enums/sizeEnum.ts b/src/enums/sizeEnum.ts index 37f27d6..f5d5777 100644 --- a/src/enums/sizeEnum.ts +++ b/src/enums/sizeEnum.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 尺寸大小枚举 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/hooks/component/useFormItem.ts b/src/hooks/component/useFormItem.ts index 96707ef..f7d118f 100644 --- a/src/hooks/component/useFormItem.ts +++ b/src/hooks/component/useFormItem.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 表单项prop绑定到表单进行校验工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/component/usePageContext.ts b/src/hooks/component/usePageContext.ts index a974c9f..1cc1f05 100644 --- a/src/hooks/component/usePageContext.ts +++ b/src/hooks/component/usePageContext.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 页面上下文工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/core/onMountedOrActivated.ts b/src/hooks/core/onMountedOrActivated.ts index 109ed54..91a6c54 100644 --- a/src/hooks/core/onMountedOrActivated.ts +++ b/src/hooks/core/onMountedOrActivated.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 组件挂载或激活工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/core/useAttrs.ts b/src/hooks/core/useAttrs.ts index 5724d92..ef2250e 100644 --- a/src/hooks/core/useAttrs.ts +++ b/src/hooks/core/useAttrs.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 获取组件实例属性工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/core/useContext.ts b/src/hooks/core/useContext.ts index 753167e..8bbb0fe 100644 --- a/src/hooks/core/useContext.ts +++ b/src/hooks/core/useContext.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 创建上下文提供数据工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/core/useLockFn.ts b/src/hooks/core/useLockFn.ts index 25d05c2..1fac62c 100644 --- a/src/hooks/core/useLockFn.ts +++ b/src/hooks/core/useLockFn.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 检测是否锁屏工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/core/useRefs.ts b/src/hooks/core/useRefs.ts index 133b916..259a65a 100644 --- a/src/hooks/core/useRefs.ts +++ b/src/hooks/core/useRefs.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: vue数据响应式处理工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/core/useTimeout.ts b/src/hooks/core/useTimeout.ts index f7096f3..42b6551 100644 --- a/src/hooks/core/useTimeout.ts +++ b/src/hooks/core/useTimeout.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 计算时间超时工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/event/useBreakpoint.ts b/src/hooks/event/useBreakpoint.ts index 560228e..e6bb8da 100644 --- a/src/hooks/event/useBreakpoint.ts +++ b/src/hooks/event/useBreakpoint.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 屏幕断点监听工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/event/useEventListener.ts b/src/hooks/event/useEventListener.ts index 5339bdc..f4ed256 100644 --- a/src/hooks/event/useEventListener.ts +++ b/src/hooks/event/useEventListener.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 元素事件监听工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/event/useIntersectionObserver.ts b/src/hooks/event/useIntersectionObserver.ts index 0582a0b..719fec8 100644 --- a/src/hooks/event/useIntersectionObserver.ts +++ b/src/hooks/event/useIntersectionObserver.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 元素交叉监听工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/event/useScroll.ts b/src/hooks/event/useScroll.ts index 5984bd4..4f1cf2f 100644 --- a/src/hooks/event/useScroll.ts +++ b/src/hooks/event/useScroll.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 滚动条监听工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/event/useScrollTo.ts b/src/hooks/event/useScrollTo.ts index f9da0b1..23cf179 100644 --- a/src/hooks/event/useScrollTo.ts +++ b/src/hooks/event/useScrollTo.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 手动移动滚动条工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/event/useWindowSizeFn.ts b/src/hooks/event/useWindowSizeFn.ts index 4e91b57..fe685e3 100644 --- a/src/hooks/event/useWindowSizeFn.ts +++ b/src/hooks/event/useWindowSizeFn.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 浏览器窗口大小监听工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/setting/index.ts b/src/hooks/setting/index.ts index eef7054..ed17fcb 100644 --- a/src/hooks/setting/index.ts +++ b/src/hooks/setting/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局系统环境变量设置工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/setting/useHeaderSetting.ts b/src/hooks/setting/useHeaderSetting.ts index 0047975..ca2fe43 100644 --- a/src/hooks/setting/useHeaderSetting.ts +++ b/src/hooks/setting/useHeaderSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 头部导航栏设置工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/setting/useMenuSetting.ts b/src/hooks/setting/useMenuSetting.ts index 53085d4..88e00af 100644 --- a/src/hooks/setting/useMenuSetting.ts +++ b/src/hooks/setting/useMenuSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 菜单设置工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/setting/useMultipleTabSetting.ts b/src/hooks/setting/useMultipleTabSetting.ts index 3edd6c5..fdb6042 100644 --- a/src/hooks/setting/useMultipleTabSetting.ts +++ b/src/hooks/setting/useMultipleTabSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 多tab设置工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/setting/useRootSetting.ts b/src/hooks/setting/useRootSetting.ts index 62b17d7..ca73019 100644 --- a/src/hooks/setting/useRootSetting.ts +++ b/src/hooks/setting/useRootSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 项目根配置设置工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/setting/useTransitionSetting.ts b/src/hooks/setting/useTransitionSetting.ts index 9682179..ba9c76b 100644 --- a/src/hooks/setting/useTransitionSetting.ts +++ b/src/hooks/setting/useTransitionSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 动画设置工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useAppInject.ts b/src/hooks/web/useAppInject.ts index f704676..75b2094 100644 --- a/src/hooks/web/useAppInject.ts +++ b/src/hooks/web/useAppInject.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 获取应用上下文数据工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useContentHeight.ts b/src/hooks/web/useContentHeight.ts index 2fa0da5..cf87d0a 100644 --- a/src/hooks/web/useContentHeight.ts +++ b/src/hooks/web/useContentHeight.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 动态计算内容高度工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useContextMenu.ts b/src/hooks/web/useContextMenu.ts index 8d3f8a6..c2e0482 100644 --- a/src/hooks/web/useContextMenu.ts +++ b/src/hooks/web/useContextMenu.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 元素上下文菜单工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useCopyToClipboard.ts b/src/hooks/web/useCopyToClipboard.ts index 87af0ce..cfd9f3f 100644 --- a/src/hooks/web/useCopyToClipboard.ts +++ b/src/hooks/web/useCopyToClipboard.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 剪贴板工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useDesign.ts b/src/hooks/web/useDesign.ts index baa64a9..0961c06 100644 --- a/src/hooks/web/useDesign.ts +++ b/src/hooks/web/useDesign.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 样式设计工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useECharts.ts b/src/hooks/web/useECharts.ts index d374852..dd9724d 100644 --- a/src/hooks/web/useECharts.ts +++ b/src/hooks/web/useECharts.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 图表工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useFullContent.ts b/src/hooks/web/useFullContent.ts index b6550af..06334db 100644 --- a/src/hooks/web/useFullContent.ts +++ b/src/hooks/web/useFullContent.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 获取是否全屏显示内容参数工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useI18n.ts b/src/hooks/web/useI18n.ts index ff057dc..2ea6d07 100644 --- a/src/hooks/web/useI18n.ts +++ b/src/hooks/web/useI18n.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 国际化工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useLockPage.ts b/src/hooks/web/useLockPage.ts index 9e55010..50f898f 100644 --- a/src/hooks/web/useLockPage.ts +++ b/src/hooks/web/useLockPage.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 锁屏监视器工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useMessage.tsx b/src/hooks/web/useMessage.tsx index 2d1eee3..e9ad582 100644 --- a/src/hooks/web/useMessage.tsx +++ b/src/hooks/web/useMessage.tsx @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 提示消息工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/usePage.ts b/src/hooks/web/usePage.ts index e426489..4094dfc 100644 --- a/src/hooks/web/usePage.ts +++ b/src/hooks/web/usePage.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 页面操作工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/usePagination.ts b/src/hooks/web/usePagination.ts index 1c93b4a..6b9f9c6 100644 --- a/src/hooks/web/usePagination.ts +++ b/src/hooks/web/usePagination.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 分页操作工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/usePermission.ts b/src/hooks/web/usePermission.ts index 01f0dab..8873bf8 100644 --- a/src/hooks/web/usePermission.ts +++ b/src/hooks/web/usePermission.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 权限校验工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useScript.ts b/src/hooks/web/useScript.ts index 8c3d458..cda1320 100644 --- a/src/hooks/web/useScript.ts +++ b/src/hooks/web/useScript.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 内嵌脚本工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useSortable.ts b/src/hooks/web/useSortable.ts index 635d318..80e0c80 100644 --- a/src/hooks/web/useSortable.ts +++ b/src/hooks/web/useSortable.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 拖拽元素工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useTabs.ts b/src/hooks/web/useTabs.ts index 5ffb751..aa781dc 100644 --- a/src/hooks/web/useTabs.ts +++ b/src/hooks/web/useTabs.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 头部tab页操作工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useTenant.ts b/src/hooks/web/useTenant.ts index 5e8b4a7..f670297 100644 --- a/src/hooks/web/useTenant.ts +++ b/src/hooks/web/useTenant.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 多租户相关操作 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import { useUserStore } from '/@/store/modules/user'; diff --git a/src/hooks/web/useTitle.ts b/src/hooks/web/useTitle.ts index 0486f84..83fae7b 100644 --- a/src/hooks/web/useTitle.ts +++ b/src/hooks/web/useTitle.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 响应式设置页面标签名称工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/hooks/web/useWatermark.ts b/src/hooks/web/useWatermark.ts index 1df9651..1f1daeb 100644 --- a/src/hooks/web/useWatermark.ts +++ b/src/hooks/web/useWatermark.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 水印工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/layouts/default/header/components/notify/data.ts b/src/layouts/default/header/components/notify/data.ts index c014466..9762cc9 100644 --- a/src/layouts/default/header/components/notify/data.ts +++ b/src/layouts/default/header/components/notify/data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: todo: 目前头部消息通知为虚拟数据,后期需要动态换成后台接口 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/src/locales/helper.ts b/src/locales/helper.ts index d6ad564..5669c5b 100644 --- a/src/locales/helper.ts +++ b/src/locales/helper.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 国际化帮助工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts index 6fdfca0..d6158eb 100644 --- a/src/locales/lang/en.ts +++ b/src/locales/lang/en.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 英文国际化配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/locales/lang/zh_CN.ts b/src/locales/lang/zh_CN.ts index ca8a705..96ed320 100644 --- a/src/locales/lang/zh_CN.ts +++ b/src/locales/lang/zh_CN.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 中文国际化配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/locales/setupI18n.ts b/src/locales/setupI18n.ts index c5d0b68..2b20b16 100644 --- a/src/locales/setupI18n.ts +++ b/src/locales/setupI18n.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 创建vue-i18n实例 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/locales/useLocale.ts b/src/locales/useLocale.ts index 4e0f1c0..687aa3e 100644 --- a/src/locales/useLocale.ts +++ b/src/locales/useLocale.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 国际化相关操作 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/logics/initAppConfig.ts b/src/logics/initAppConfig.ts index e6d375e..38f7619 100644 --- a/src/logics/initAppConfig.ts +++ b/src/logics/initAppConfig.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 初始化应用程序配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/logics/mitt/routeChange.ts b/src/logics/mitt/routeChange.ts index a284ade..361647a 100644 --- a/src/logics/mitt/routeChange.ts +++ b/src/logics/mitt/routeChange.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 用于监视路由更改以更改菜单和选项卡的状态。不需要监听路由,因为路由状态变化受页面渲染时间影响,会比较慢 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/logics/theme/dark.ts b/src/logics/theme/dark.ts index 230e684..389d3fb 100644 --- a/src/logics/theme/dark.ts +++ b/src/logics/theme/dark.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 切换暗黑主题 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/logics/theme/index.ts b/src/logics/theme/index.ts index 990ef54..6a21762 100644 --- a/src/logics/theme/index.ts +++ b/src/logics/theme/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 改变系统主题颜色 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/logics/theme/updateBackground.ts b/src/logics/theme/updateBackground.ts index 1508bed..7d3e0be 100644 --- a/src/logics/theme/updateBackground.ts +++ b/src/logics/theme/updateBackground.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 手段切换主题背景样式 * 用于项目中不支持暗黑主题的组件,通过添加css样式解决处理 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/logics/theme/updateColorWeak.ts b/src/logics/theme/updateColorWeak.ts index 15e5f3b..17fe276 100644 --- a/src/logics/theme/updateColorWeak.ts +++ b/src/logics/theme/updateColorWeak.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 更改项目颜色弱模式的状态 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/logics/theme/updateGrayMode.ts b/src/logics/theme/updateGrayMode.ts index 4e2c762..0b65b1a 100644 --- a/src/logics/theme/updateGrayMode.ts +++ b/src/logics/theme/updateGrayMode.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 更改项目灰色模式状态 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/logics/theme/util.ts b/src/logics/theme/util.ts index 3850b8e..9fd50ac 100644 --- a/src/logics/theme/util.ts +++ b/src/logics/theme/util.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 主题样式处理工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/constant.ts b/src/router/constant.ts index 3233d21..07d971d 100644 --- a/src/router/constant.ts +++ b/src/router/constant.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 路由常量 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/guard/index.ts b/src/router/guard/index.ts index 3cf34a3..bc598bd 100644 --- a/src/router/guard/index.ts +++ b/src/router/guard/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 配置路由导航守卫 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/guard/permissionGuard.ts b/src/router/guard/permissionGuard.ts index 0d03ff5..73c6ea7 100644 --- a/src/router/guard/permissionGuard.ts +++ b/src/router/guard/permissionGuard.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 权限导航守卫 * 校验当前用户是否有权限能够进入系统 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/guard/stateGuard.ts b/src/router/guard/stateGuard.ts index 05698c1..1026c40 100644 --- a/src/router/guard/stateGuard.ts +++ b/src/router/guard/stateGuard.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 清除数据储存处导航守卫 * 只要进入登录页面的路由,就会清除认证信息 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/helper/menuHelper.ts b/src/router/helper/menuHelper.ts index 48ff9f9..48eaef1 100644 --- a/src/router/helper/menuHelper.ts +++ b/src/router/helper/menuHelper.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 菜单帮助工具类 * 主要处理菜单的组装,以及将路由转为菜单的处理 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/helper/routeHelper.ts b/src/router/helper/routeHelper.ts index d2b53c2..dea578b 100644 --- a/src/router/helper/routeHelper.ts +++ b/src/router/helper/routeHelper.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 路由帮助工具类 * 主要处理路由的组装,以及将菜单转换成路由的处理 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/index.ts b/src/router/index.ts index 784b932..3aa58d7 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 基础路由配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/routes/basic.ts b/src/router/routes/basic.ts index 9e5effa..2d28339 100644 --- a/src/router/routes/basic.ts +++ b/src/router/routes/basic.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 基础路由配置 * 系统中必不可少的配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts index 57b99a5..b9a3aed 100644 --- a/src/router/routes/index.ts +++ b/src/router/routes/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 导出路由配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/router/routes/modules/dashboard.ts b/src/router/routes/modules/dashboard.ts index 15db4ff..ce5f65b 100644 --- a/src/router/routes/modules/dashboard.ts +++ b/src/router/routes/modules/dashboard.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 指示板路由默认配置 * 当没有配置Dashboard菜单时,使用默认配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/settings/componentSetting.ts b/src/settings/componentSetting.ts index 4795d4f..b25e564 100644 --- a/src/settings/componentSetting.ts +++ b/src/settings/componentSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 用于配置部分组件的通用配置,无需修改组件 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ import type { SorterResult } from '../components/Table'; diff --git a/src/settings/designSetting.ts b/src/settings/designSetting.ts index 5ec9864..a85c61a 100644 --- a/src/settings/designSetting.ts +++ b/src/settings/designSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: ant-design颜色配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/settings/encryptionSetting.ts b/src/settings/encryptionSetting.ts index 2d5b0d3..3553ed1 100644 --- a/src/settings/encryptionSetting.ts +++ b/src/settings/encryptionSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 缓存加密配置设置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/settings/localeSetting.ts b/src/settings/localeSetting.ts index 3afabf7..6f9085e 100644 --- a/src/settings/localeSetting.ts +++ b/src/settings/localeSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 国际化配置设置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/settings/projectSetting.ts b/src/settings/projectSetting.ts index 04cfdb0..68390c5 100644 --- a/src/settings/projectSetting.ts +++ b/src/settings/projectSetting.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 项目配置设置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/store/index.ts b/src/store/index.ts index 801f935..ac3e1de 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 创建pinia数据存储实例 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index 6b233f8..1352b10 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 应用配置存储中心 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/store/modules/locale.ts b/src/store/modules/locale.ts index 318d7ae..a9ec970 100644 --- a/src/store/modules/locale.ts +++ b/src/store/modules/locale.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 国际化信息存储中心 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/store/modules/lock.ts b/src/store/modules/lock.ts index 78ae17b..2f4f09f 100644 --- a/src/store/modules/lock.ts +++ b/src/store/modules/lock.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 锁屏信息存储中心 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/store/modules/microApp.ts b/src/store/modules/microApp.ts index c54a6d6..0ca7d3f 100644 --- a/src/store/modules/microApp.ts +++ b/src/store/modules/microApp.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 微应用配置存储中心 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2023/7/22 */ import { defineStore } from 'pinia'; diff --git a/src/store/modules/multipleTab.ts b/src/store/modules/multipleTab.ts index 386f4eb..16e0556 100644 --- a/src/store/modules/multipleTab.ts +++ b/src/store/modules/multipleTab.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 头部多标签tab信息存储中心 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/store/modules/permission.ts b/src/store/modules/permission.ts index f183131..0edd287 100644 --- a/src/store/modules/permission.ts +++ b/src/store/modules/permission.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 权限信息存储中心 * 路由就是菜单 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts index 44065f7..431326e 100644 --- a/src/store/modules/user.ts +++ b/src/store/modules/user.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 当前用户信息存储中心 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/utils/auth/index.ts b/src/utils/auth/index.ts index 09ae01b..e638fd0 100644 --- a/src/utils/auth/index.ts +++ b/src/utils/auth/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 存储授权信息缓存工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/utils/bem.ts b/src/utils/bem.ts index 0ce7146..b45d7d4 100644 --- a/src/utils/bem.ts +++ b/src/utils/bem.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 块元素修饰符命名工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/cache/index.ts b/src/utils/cache/index.ts index be8a4a8..cb0321d 100644 --- a/src/utils/cache/index.ts +++ b/src/utils/cache/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 创建缓存实例工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/cache/memory.ts b/src/utils/cache/memory.ts index 1fd6f05..9a70a82 100644 --- a/src/utils/cache/memory.ts +++ b/src/utils/cache/memory.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 缓存记忆工具类 * 可以设置指定缓存多久自动过期,失效 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/utils/cache/persistent.ts b/src/utils/cache/persistent.ts index 4ecc726..2b4a801 100644 --- a/src/utils/cache/persistent.ts +++ b/src/utils/cache/persistent.ts @@ -3,7 +3,7 @@ * @description: 缓存持久化工具类 * 内部数据存储在memory缓存记忆对象的Cache{value:V}中 * immediate: 立即修改APP_LOCAL_CACHE_KEY的数据,立刻让外部调用APP_LOCAL_CACHE_KEY的数据发生改变 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/9 */ diff --git a/src/utils/cache/storageCache.ts b/src/utils/cache/storageCache.ts index a35594f..3a7c093 100644 --- a/src/utils/cache/storageCache.ts +++ b/src/utils/cache/storageCache.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 缓存对象 * 提供给外部调用创建缓存实例,跟java中new class()一样 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/cipher.ts b/src/utils/cipher.ts index 2605073..e846af5 100644 --- a/src/utils/cipher.ts +++ b/src/utils/cipher.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 加密工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ import { encrypt, decrypt } from 'crypto-js/aes'; diff --git a/src/utils/color.ts b/src/utils/color.ts index c491f84..a35960f 100644 --- a/src/utils/color.ts +++ b/src/utils/color.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 颜色工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/dateUtil.ts b/src/utils/dateUtil.ts index f264c37..64568f3 100644 --- a/src/utils/dateUtil.ts +++ b/src/utils/dateUtil.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 时间操作工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/domUtils.ts b/src/utils/domUtils.ts index a09af8f..1e7618a 100644 --- a/src/utils/domUtils.ts +++ b/src/utils/domUtils.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: dom节点操作工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/env.ts b/src/utils/env.ts index ce8e7e4..66ad4cf 100644 --- a/src/utils/env.ts +++ b/src/utils/env.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 环境变量工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/event/index.ts b/src/utils/event/index.ts index ac11f0b..1834e05 100644 --- a/src/utils/event/index.ts +++ b/src/utils/event/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 监听元素大小变化触发对应事件工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/factory/createAsyncComponent.tsx b/src/utils/factory/createAsyncComponent.tsx index a1345db..e6d78e8 100644 --- a/src/utils/factory/createAsyncComponent.tsx +++ b/src/utils/factory/createAsyncComponent.tsx @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 利用vue组件工厂创建异步组件工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/file/base64Conver.ts b/src/utils/file/base64Conver.ts index 0a4efee..d5f56ff 100644 --- a/src/utils/file/base64Conver.ts +++ b/src/utils/file/base64Conver.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: base64转换工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/file/download.ts b/src/utils/file/download.ts index b94ee51..435ace7 100644 --- a/src/utils/file/download.ts +++ b/src/utils/file/download.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 下载工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/helper/treeHelper.ts b/src/utils/helper/treeHelper.ts index 88c1632..23afaad 100644 --- a/src/utils/helper/treeHelper.ts +++ b/src/utils/helper/treeHelper.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 树形数据处理帮助工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/helper/tsxHelper.tsx b/src/utils/helper/tsxHelper.tsx index 3e72f31..a57df6a 100644 --- a/src/utils/helper/tsxHelper.tsx +++ b/src/utils/helper/tsxHelper.tsx @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: tsx帮助工具 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/Axios.ts b/src/utils/http/axios/Axios.ts index a26ce64..dc86a88 100644 --- a/src/utils/http/axios/Axios.ts +++ b/src/utils/http/axios/Axios.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 扩展axios模块 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/axiosCancel.ts b/src/utils/http/axios/axiosCancel.ts index 5475aef..10cd577 100644 --- a/src/utils/http/axios/axiosCancel.ts +++ b/src/utils/http/axios/axiosCancel.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 封装取消axios重复请求 * 可以实现同一个请求多次,最终只会有一个请求发生成功 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/axiosRetry.ts b/src/utils/http/axios/axiosRetry.ts index c484c8a..5c96b48 100644 --- a/src/utils/http/axios/axiosRetry.ts +++ b/src/utils/http/axios/axiosRetry.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 处理请求错误重试机制 * 可以实现同一个请求多次,最终只会有一个请求发生成功 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/axiosTransform.ts b/src/utils/http/axios/axiosTransform.ts index 354e1ac..3be7036 100644 --- a/src/utils/http/axios/axiosTransform.ts +++ b/src/utils/http/axios/axiosTransform.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 数据处理类,可根据项目配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/checkStatus.ts b/src/utils/http/axios/checkStatus.ts index b90a88f..278afaf 100644 --- a/src/utils/http/axios/checkStatus.ts +++ b/src/utils/http/axios/checkStatus.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 状态码转换提示消息 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/helper.ts b/src/utils/http/axios/helper.ts index 2c35b77..f60c80c 100644 --- a/src/utils/http/axios/helper.ts +++ b/src/utils/http/axios/helper.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: axios帮助工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/http/axios/index.ts b/src/utils/http/axios/index.ts index 59705b4..5740def 100644 --- a/src/utils/http/axios/index.ts +++ b/src/utils/http/axios/index.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: axios配置可自行根据项目进行更改,只需更改该文件即可,其他文件可以不动 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/7 */ diff --git a/src/utils/index.ts b/src/utils/index.ts index 503cd75..7a264e3 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 通用工具类 * 注意: 如果同一类的工具类很多,建议创建文件存放到这个文件中,方便工具分类,与后期维护 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/is.ts b/src/utils/is.ts index 6c52c4c..082611e 100644 --- a/src/utils/is.ts +++ b/src/utils/is.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 验证对象工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/lib/echarts.ts b/src/utils/lib/echarts.ts index 9bab9b6..ee62e9b 100644 --- a/src/utils/lib/echarts.ts +++ b/src/utils/lib/echarts.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 导出echarts所使用的图表组件库 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/log.ts b/src/utils/log.ts index d8cea1f..48bfa26 100644 --- a/src/utils/log.ts +++ b/src/utils/log.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 控制台日志输出工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/mitt.ts b/src/utils/mitt.ts index a76ef95..0c50eb5 100644 --- a/src/utils/mitt.ts +++ b/src/utils/mitt.ts @@ -2,7 +2,7 @@ * @program: kicc-ui * @description: 订阅发布发射器 * copy to https://github.com/developit/mitt - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/propTypes.ts b/src/utils/propTypes.ts index 3863c14..f015e62 100644 --- a/src/utils/propTypes.ts +++ b/src/utils/propTypes.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 组件prop类型定义工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/props.ts b/src/utils/props.ts index b18becb..cea2e97 100644 --- a/src/utils/props.ts +++ b/src/utils/props.ts @@ -4,7 +4,7 @@ * 加入 values,validator 可选项 * 参考: https://github.com/element-plus/element-plus/pull/3341#issuecomment-917619238 * copy from element-plus - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/types.ts b/src/utils/types.ts index 840b89b..d15fef9 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -3,7 +3,7 @@ * @description: 构建props所用到的类型 * 参考: https://github.com/element-plus/element-plus/blob/dec24ba69219e04e5bd31c480400a617997b44a7/packages/utils/types.ts * copy from element-plus - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/utils/uuid.ts b/src/utils/uuid.ts index a1ccc74..2fa2c2c 100644 --- a/src/utils/uuid.ts +++ b/src/utils/uuid.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: uuid生成工具类 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/src/views/common/doctor/DoctorModal.vue b/src/views/common/doctor/DoctorModal.vue index 0a981be..7b133ff 100644 --- a/src/views/common/doctor/DoctorModal.vue +++ b/src/views/common/doctor/DoctorModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form'; diff --git a/src/views/common/doctor/index.vue b/src/views/common/doctor/index.vue index d571a47..c8ff823 100644 --- a/src/views/common/doctor/index.vue +++ b/src/views/common/doctor/index.vue @@ -46,8 +46,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/hospital/HospitalModal.vue b/src/views/common/hospital/HospitalModal.vue index f920433..1ffcfc7 100644 --- a/src/views/common/hospital/HospitalModal.vue +++ b/src/views/common/hospital/HospitalModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form'; diff --git a/src/views/common/hospital/index.vue b/src/views/common/hospital/index.vue index e423be6..bb8c245 100644 --- a/src/views/common/hospital/index.vue +++ b/src/views/common/hospital/index.vue @@ -46,8 +46,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/mapLogistic/MapLogisticModal.vue b/src/views/common/mapLogistic/MapLogisticModal.vue index 7e38495..09ed1da 100644 --- a/src/views/common/mapLogistic/MapLogisticModal.vue +++ b/src/views/common/mapLogistic/MapLogisticModal.vue @@ -20,8 +20,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicModal, ModalProps, useModalInner } from '/@/components/Modal'; import { AMapDesigner } from '/@/components/AMap'; diff --git a/src/views/common/mapLogistic/index.vue b/src/views/common/mapLogistic/index.vue index fae53b5..85470c1 100644 --- a/src/views/common/mapLogistic/index.vue +++ b/src/views/common/mapLogistic/index.vue @@ -36,8 +36,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useModal } from '/@/components/Modal'; diff --git a/src/views/common/office/OfficeModal.vue b/src/views/common/office/OfficeModal.vue index d71b324..e5635a4 100644 --- a/src/views/common/office/OfficeModal.vue +++ b/src/views/common/office/OfficeModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form'; diff --git a/src/views/common/office/index.vue b/src/views/common/office/index.vue index 835016d..34a7954 100644 --- a/src/views/common/office/index.vue +++ b/src/views/common/office/index.vue @@ -46,8 +46,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/org/OrgModal.vue b/src/views/common/org/OrgModal.vue index a8d1da8..b009907 100644 --- a/src/views/common/org/OrgModal.vue +++ b/src/views/common/org/OrgModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive } from 'vue'; import { BasicForm, useForm } from '/@/components/Form'; diff --git a/src/views/common/org/index.vue b/src/views/common/org/index.vue index d5877f0..59dc314 100644 --- a/src/views/common/org/index.vue +++ b/src/views/common/org/index.vue @@ -46,8 +46,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/project/ProjectModal.vue b/src/views/common/project/ProjectModal.vue index a1f6cfa..549351d 100644 --- a/src/views/common/project/ProjectModal.vue +++ b/src/views/common/project/ProjectModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form'; diff --git a/src/views/common/project/index.vue b/src/views/common/project/index.vue index d4f55db..5449bcd 100644 --- a/src/views/common/project/index.vue +++ b/src/views/common/project/index.vue @@ -50,8 +50,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useModal } from '/@/components/Modal'; diff --git a/src/views/common/project/project.data.ts b/src/views/common/project/project.data.ts index f010931..e5a401a 100644 --- a/src/views/common/project/project.data.ts +++ b/src/views/common/project/project.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 部门模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/common/push/pushApplication/ApplicationModal.vue b/src/views/common/push/pushApplication/ApplicationModal.vue index c542188..d80595a 100644 --- a/src/views/common/push/pushApplication/ApplicationModal.vue +++ b/src/views/common/push/pushApplication/ApplicationModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import {ref, toRaw, unref} from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/common/push/pushApplication/index.vue b/src/views/common/push/pushApplication/index.vue index 876b5d4..434fea9 100644 --- a/src/views/common/push/pushApplication/index.vue +++ b/src/views/common/push/pushApplication/index.vue @@ -54,8 +54,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/push/pushBlacklist/index.vue b/src/views/common/push/pushBlacklist/index.vue index 7a7ec70..9bcc1c7 100644 --- a/src/views/common/push/pushBlacklist/index.vue +++ b/src/views/common/push/pushBlacklist/index.vue @@ -38,8 +38,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/push/pushChatMessage/index.vue b/src/views/common/push/pushChatMessage/index.vue index 78f9d04..c05675d 100644 --- a/src/views/common/push/pushChatMessage/index.vue +++ b/src/views/common/push/pushChatMessage/index.vue @@ -38,8 +38,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/push/pushRingtone/index.vue b/src/views/common/push/pushRingtone/index.vue index d15e517..0deb47e 100644 --- a/src/views/common/push/pushRingtone/index.vue +++ b/src/views/common/push/pushRingtone/index.vue @@ -47,8 +47,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/common/push/pushType/TypeModal.vue b/src/views/common/push/pushType/TypeModal.vue index 59200a1..39d5a55 100644 --- a/src/views/common/push/pushType/TypeModal.vue +++ b/src/views/common/push/pushType/TypeModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import {ref, toRaw, unref} from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/monitor/operLog/index.vue b/src/views/monitor/operLog/index.vue index 5875c3e..891e07e 100644 --- a/src/views/monitor/operLog/index.vue +++ b/src/views/monitor/operLog/index.vue @@ -39,8 +39,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/monitor/operLog/operLog.data.ts b/src/views/monitor/operLog/operLog.data.ts index 46332ed..a6f5dd9 100644 --- a/src/views/monitor/operLog/operLog.data.ts +++ b/src/views/monitor/operLog/operLog.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 操作日志模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/monitor/token/index.vue b/src/views/monitor/token/index.vue index a32a99d..15bbe9e 100644 --- a/src/views/monitor/token/index.vue +++ b/src/views/monitor/token/index.vue @@ -23,8 +23,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { listToken, delToken } from '/@/api/platform/monitor/controller/token'; diff --git a/src/views/monitor/token/token.data.ts b/src/views/monitor/token/token.data.ts index 635683b..8473df3 100644 --- a/src/views/monitor/token/token.data.ts +++ b/src/views/monitor/token/token.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 令牌模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/report/design/index.vue b/src/views/report/design/index.vue index 8ac5012..6407c4a 100644 --- a/src/views/report/design/index.vue +++ b/src/views/report/design/index.vue @@ -46,8 +46,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/system/client/ClientModal.vue b/src/views/system/client/ClientModal.vue index 3d703e7..c9ce138 100644 --- a/src/views/system/client/ClientModal.vue +++ b/src/views/system/client/ClientModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/client/client.data.ts b/src/views/system/client/client.data.ts index 0c7bd3a..fc45e65 100644 --- a/src/views/system/client/client.data.ts +++ b/src/views/system/client/client.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 授权客户端模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/system/client/index.vue b/src/views/system/client/index.vue index ba7ce83..1c23efb 100644 --- a/src/views/system/client/index.vue +++ b/src/views/system/client/index.vue @@ -53,8 +53,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/system/config/ConfigModal.vue b/src/views/system/config/ConfigModal.vue index 2c9cd65..551c478 100644 --- a/src/views/system/config/ConfigModal.vue +++ b/src/views/system/config/ConfigModal.vue @@ -76,8 +76,8 @@ * 当前原生ant-design-vue表格表单组件模板,目前已经与系统项目配置高度集成,系统配置发生修改时组件也会产生对应的变化 * 目前是基于vben的BasicTable跟BasicForm组件重写出一套ant-design-vue原生表格表单组件模板 * 注意:不会强依赖vben的BasicTable跟BasicForm组件,只会依赖一些简单容易逻辑不复杂的功能,复杂的功能不会依赖,降低耦合,提升此模板的可扩展性 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, ref } from 'vue'; import { Form, Input, Radio, Row, Col } from 'ant-design-vue'; diff --git a/src/views/system/config/config.data.ts b/src/views/system/config/config.data.ts index 04e7942..96917b5 100644 --- a/src/views/system/config/config.data.ts +++ b/src/views/system/config/config.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 配置参数模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ import { h } from 'vue'; diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue index 0594c63..6f97fb8 100644 --- a/src/views/system/config/index.vue +++ b/src/views/system/config/index.vue @@ -179,8 +179,8 @@ * 当前原生ant-design-vue表格表单组件模板,目前已经与系统项目配置高度集成,系统配置发生修改时组件也会产生对应的变化 * 目前是基于vben的BasicTable跟BasicForm组件重写出一套ant-design-vue原生表格表单组件模板 * 注意:不会强依赖vben的BasicTable跟BasicForm组件,只会依赖一些简单容易逻辑不复杂的功能,复杂的功能不会依赖,降低耦合,提升此模板的可扩展性 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTitle } from '/@/components/Basic'; import { RedoOutlined, ColumnHeightOutlined, FullscreenOutlined, FullscreenExitOutlined } from '@ant-design/icons-vue'; diff --git a/src/views/system/dept/DeptModal.vue b/src/views/system/dept/DeptModal.vue index 86d04ea..e2883df 100644 --- a/src/views/system/dept/DeptModal.vue +++ b/src/views/system/dept/DeptModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/dept/dept.data.ts b/src/views/system/dept/dept.data.ts index 72e191b..5bc04a2 100644 --- a/src/views/system/dept/dept.data.ts +++ b/src/views/system/dept/dept.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 部门模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index a1b2092..97546ad 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -44,8 +44,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useModal } from '/@/components/Modal'; diff --git a/src/views/system/dict/DictDataModal.vue b/src/views/system/dict/DictDataModal.vue index f4ad6ff..5585322 100644 --- a/src/views/system/dict/DictDataModal.vue +++ b/src/views/system/dict/DictDataModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/dict/DictDataTable.vue b/src/views/system/dict/DictDataTable.vue index 77bccdb..6894f01 100644 --- a/src/views/system/dict/DictDataTable.vue +++ b/src/views/system/dict/DictDataTable.vue @@ -63,8 +63,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,不采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { defineComponent, reactive, toRaw } from 'vue'; import { PageWrapper } from '/@/components/Page'; diff --git a/src/views/system/dict/DictModal.vue b/src/views/system/dict/DictModal.vue index e21b638..806f23a 100644 --- a/src/views/system/dict/DictModal.vue +++ b/src/views/system/dict/DictModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/dict/dict.data.ts b/src/views/system/dict/dict.data.ts index 9d96135..7966b41 100644 --- a/src/views/system/dict/dict.data.ts +++ b/src/views/system/dict/dict.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 字典模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/5/8 */ diff --git a/src/views/system/dict/dictdata.data.ts b/src/views/system/dict/dictdata.data.ts index f749c9a..5c1c56b 100644 --- a/src/views/system/dict/dictdata.data.ts +++ b/src/views/system/dict/dictdata.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 字典数据模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/5/8 */ diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue index e79138a..e2c9617 100644 --- a/src/views/system/dict/index.vue +++ b/src/views/system/dict/index.vue @@ -60,8 +60,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,不采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { defineComponent, reactive, ref, toRaw } from 'vue'; import { PageWrapper } from '/@/components/Page'; diff --git a/src/views/system/file/file.data.ts b/src/views/system/file/file.data.ts index 7ee806a..b171203 100644 --- a/src/views/system/file/file.data.ts +++ b/src/views/system/file/file.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 文件模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/system/file/index.vue b/src/views/system/file/index.vue index d2a5f79..ce87dfc 100644 --- a/src/views/system/file/index.vue +++ b/src/views/system/file/index.vue @@ -52,8 +52,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/system/menu/MenuModal.vue b/src/views/system/menu/MenuModal.vue index 55ccfba..29bb808 100644 --- a/src/views/system/menu/MenuModal.vue +++ b/src/views/system/menu/MenuModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue index a8f80e1..b774a14 100644 --- a/src/views/system/menu/index.vue +++ b/src/views/system/menu/index.vue @@ -53,8 +53,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { listMenu, delMenu } from '/@/api/platform/system/controller/menu'; diff --git a/src/views/system/menu/menu.data.ts b/src/views/system/menu/menu.data.ts index 85a5bbd..530163f 100644 --- a/src/views/system/menu/menu.data.ts +++ b/src/views/system/menu/menu.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 菜单模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/system/region/RegionModal.vue b/src/views/system/region/RegionModal.vue index 64296f0..bc54e51 100644 --- a/src/views/system/region/RegionModal.vue +++ b/src/views/system/region/RegionModal.vue @@ -14,8 +14,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive } from 'vue'; import { BasicForm, useForm } from '/@/components/Form'; diff --git a/src/views/system/region/index.vue b/src/views/system/region/index.vue index a61d77b..f93e327 100644 --- a/src/views/system/region/index.vue +++ b/src/views/system/region/index.vue @@ -44,8 +44,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useModal } from '/@/components/Modal'; diff --git a/src/views/system/role/RoleDrawer.vue b/src/views/system/role/RoleDrawer.vue index 6c6ad24..dc6575b 100644 --- a/src/views/system/role/RoleDrawer.vue +++ b/src/views/system/role/RoleDrawer.vue @@ -26,8 +26,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import {reactive, toRaw} from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/role/index.vue b/src/views/system/role/index.vue index 3ede15d..532c471 100644 --- a/src/views/system/role/index.vue +++ b/src/views/system/role/index.vue @@ -52,8 +52,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { listRole, delRole } from '/@/api/platform/system/controller/role'; diff --git a/src/views/system/role/role.data.ts b/src/views/system/role/role.data.ts index d789789..44453b0 100644 --- a/src/views/system/role/role.data.ts +++ b/src/views/system/role/role.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 角色模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/system/tenant/TenantModal.vue b/src/views/system/tenant/TenantModal.vue index 62afbe6..3fb684d 100644 --- a/src/views/system/tenant/TenantModal.vue +++ b/src/views/system/tenant/TenantModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/system/tenant/index.vue b/src/views/system/tenant/index.vue index 4d8cec4..9b4d7ae 100644 --- a/src/views/system/tenant/index.vue +++ b/src/views/system/tenant/index.vue @@ -53,8 +53,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/system/tenant/tenant.data.ts b/src/views/system/tenant/tenant.data.ts index e008f0c..d0222d9 100644 --- a/src/views/system/tenant/tenant.data.ts +++ b/src/views/system/tenant/tenant.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 多租户模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/system/user/DeptTree.vue b/src/views/system/user/DeptTree.vue index bef7bc9..0282ca4 100644 --- a/src/views/system/user/DeptTree.vue +++ b/src/views/system/user/DeptTree.vue @@ -15,8 +15,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-树形选择封装组件编写,不采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { defineComponent, onMounted, ref } from 'vue'; import { BasicTree, TreeItem } from '/@/components/Tree'; diff --git a/src/views/system/user/ResetPwdModal.vue b/src/views/system/user/ResetPwdModal.vue index 45bbf38..7b7630e 100644 --- a/src/views/system/user/ResetPwdModal.vue +++ b/src/views/system/user/ResetPwdModal.vue @@ -19,8 +19,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用ant-design-vue原生组件编写表单,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive } from 'vue'; import { BasicModal, ModalProps, useModalInner } from '/@/components/Modal'; diff --git a/src/views/system/user/UserModal.vue b/src/views/system/user/UserModal.vue index da71626..1dff3d0 100644 --- a/src/views/system/user/UserModal.vue +++ b/src/views/system/user/UserModal.vue @@ -12,8 +12,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,不采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import {defineComponent, reactive, toRaw } from 'vue'; import { BasicModal, useModalInner } from '/@/components/Modal'; diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index d1a7702..7a4e22a 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -68,8 +68,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,不采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { defineComponent, reactive, toRaw } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/src/views/system/user/sso/SsoModal.vue b/src/views/system/user/sso/SsoModal.vue new file mode 100644 index 0000000..0d36ad4 --- /dev/null +++ b/src/views/system/user/sso/SsoModal.vue @@ -0,0 +1,134 @@ + + diff --git a/src/views/system/user/sso/index.vue b/src/views/system/user/sso/index.vue new file mode 100644 index 0000000..d4b25ef --- /dev/null +++ b/src/views/system/user/sso/index.vue @@ -0,0 +1,188 @@ + + + diff --git a/src/views/system/user/sso/sso.data.ts b/src/views/system/user/sso/sso.data.ts new file mode 100644 index 0000000..3ec0c2a --- /dev/null +++ b/src/views/system/user/sso/sso.data.ts @@ -0,0 +1,312 @@ +/** + * @program: kicc-ui + * @description: 用户模块动态渲染配置 + * @author: wangxaing4 + * @create: 2022/4/21 + */ + +import { BasicColumn } from '/@/components/Table'; +import { FormSchema } from '/@/components/Table'; +import { h } from 'vue'; +import { Switch } from 'ant-design-vue'; +import { listRole } from '/@/api/platform/system/controller/role'; +import { changeStatus } from '/@/api/platform/system/controller/user'; +import { useMessage } from '/@/hooks/web/useMessage'; +import { getUserTypeList } from '/@/api/platform/system/controller/user'; +import { SystemUserType } from '/@/enums/permissionEnum'; + +/** 通用变量统一声明区域 */ +const { createConfirm } = useMessage(); + +/** 表格列配置 */ +export const columns: BasicColumn[] = [ + { + title: '用户名称', + dataIndex: 'userName', + width: 120 + }, + { + title: '用户昵称', + dataIndex: 'nickName', + width: 120 + }, + { + title: '机构名称', + dataIndex: 'deptName', + width: 200 + }, + { + title: '手机号码', + dataIndex: 'phone', + width: 200 + }, + { + title: '状态', + dataIndex: 'status', + width: 120, + customRender: ({ record }) => { + // 设置请求加载状态标识 + if (!Reflect.has(record, 'pendingStatus')) { + record.pendingStatus = false; + } + return h(Switch, { + checked: record.status === '0', + checkedChildren: '已启用', + unCheckedChildren: '已禁用', + loading: record.pendingStatus, + onChange(checked: boolean) { + const text = checked ? '启用' : '停用'; + createConfirm({ + iconType: 'warning', + title: '警告', + content: `确认要"${text}${record.userName}用户吗?`, + onOk: async () => { + record.pendingStatus = true; + const newStatus = checked ? '0' : '1'; + const { createMessage } = useMessage(); + changeStatus(record.id, newStatus).then(() => { + record.status = newStatus; + createMessage.success(`${text}成功`); + }).catch(() => { + createMessage.error(`${text}失败`); + }).finally(() => record.pendingStatus = false); + } + }); + } + }); + } + }, + { + title: '创建时间', + dataIndex: 'createTime', + width: 180 + } +]; + +/** 搜索表单配置 */ +export const searchFormSchema: FormSchema[] = [ + { + field: 'userName', + label: '用户名称', + component: 'Input', + componentProps: { + placeholder: '请输入用户名称', + }, + colProps: { span: 8 } + }, + { + field: 'dateRange', + label: '创建时间', + component: 'RangePicker', + componentProps: { + style: { width:'100%' }, + valueFormat: 'YYYY-MM-DD', + placeholder: ['开始日期','结束日期'] + }, + colProps: { span: 8 } + } +]; + +/** 用户表单配置 */ +export const userFormSchema: FormSchema[] = [ + { + field: 'id', + label: 'ID', + component: 'Input', + show: false + }, + { + field: 'nickName', + label: '用户昵称', + component: 'Input', + required: true, + colProps: { + span: 12 + } + }, + { + field: 'avatar', + label: '头像', + component: 'Input', + defaultValue: 'https://godolphinx.org/dolphin1024x1024.png', + show: false + }, + { + field: 'deptId', + label: '归属机构', + component: 'TreeSelect', + componentProps: { + fieldNames: { + label: 'name', + key: 'deptId', + value: 'deptId' + }, + getPopupContainer: () => document.body + }, + required: true, + colProps: { + span: 12 + } + }, + { + field: 'phone', + label: '手机号', + component: 'Input', + rules: [ + { + required: true, + message: '请输入手机号!', + }, + { + pattern: new RegExp('^1[3|4|5|6|7|8|9][0-9]\\d{8}$'), + message: '请输入正确的手机号码!', + validateTrigger: 'blur' + } + ] + }, + { + field: 'email', + label: '邮箱', + component: 'Input', + rules: [ + { + required: true, + message: '请输入邮箱!', + }, + { + type: 'email', + message: '请输入正确的邮箱地址!', + validateTrigger: ['blur', 'change'] + } + ] + }, + { + field: 'userName', + label: '用户名', + component: 'Input', + required: true, + colProps: { + span: 12 + } + }, + { + field: 'password', + label: '密码', + component: 'InputPassword', + colProps: { + span: 12 + }, + rules: [ + { + required: true, + whitespace: true, + message: '请输入密码!', + }, + { + pattern: new RegExp('[^\\u4e00-\\u9fa5]+'), + type: 'string', + message: '密码不能输入汉字!', + }, + { + min: 6, + max: 32, + message: '长度必需在6-32之间!', + } + ] + }, + { + field: 'sex', + label: '性别', + component: 'Select', + required: true, + componentProps: { + options: [ + { label: '男', value: '0' }, + { label: '女', value: '1' } + ] + }, + colProps: { + span: 12 + } + }, + { + field: 'status', + label: '状态', + component: 'RadioGroup', + defaultValue: '0', + componentProps: { + options: [ + { label: '正常', value: '0' }, + { label: '停用', value: '1' } + ] + }, + colProps: { + span: 12 + } + }, + { + field: 'roleIds', + label: '授权角色', + component: 'ApiSelect', + required: true, + componentProps: { + mode: 'multiple', + api: listRole, + labelField: 'name', + valueField: 'id', + resultField: 'data' + }, + colProps: { + span: 12 + } + }, + { + field: 'userType', + label: '用户类型', + component: 'ApiSelect', + required: true, + componentProps: { + api: getUserTypeList, + resultField: 'data' + }, + colProps: { + span: 12 + } + }, + { + field: 'mapCenter', + label: '地图中心点', + component: 'Input', + required: true, + colProps: { + span: 12 + }, + ifShow: ({values}) => values.userType == SystemUserType.CUSTOMER_SERVICE + }, + { + field: 'mapOrientation', + label: '图片旋转值', + component: 'InputNumber', + defaultValue: 0, + componentProps: { + style: { width:'100%' }, + min: 0 + }, + colProps: { + span: 12 + }, + ifShow: ({ values }) => values.userType == SystemUserType.CUSTOMER_SERVICE, + required: true, + }, + { + label: '备注', + field: 'remarks', + component: 'InputTextArea', + componentProps: { + rows: 6 + }, + colProps: { + span: 24 + } + } +]; diff --git a/src/views/system/user/user.data.ts b/src/views/system/user/user.data.ts index dcbf714..3ec0c2a 100644 --- a/src/views/system/user/user.data.ts +++ b/src/views/system/user/user.data.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 用户模块动态渲染配置 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/21 */ diff --git a/src/views/workflow/extension/form/FormCategoryModal.vue b/src/views/workflow/extension/form/FormCategoryModal.vue index 49a7dad..30cd2c0 100644 --- a/src/views/workflow/extension/form/FormCategoryModal.vue +++ b/src/views/workflow/extension/form/FormCategoryModal.vue @@ -13,8 +13,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/workflow/extension/form/FormModal.vue b/src/views/workflow/extension/form/FormModal.vue index 949d877..3d0f52a 100644 --- a/src/views/workflow/extension/form/FormModal.vue +++ b/src/views/workflow/extension/form/FormModal.vue @@ -13,8 +13,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { ref, unref } from 'vue'; import { BasicForm, useForm } from '/@/components/Form/index'; diff --git a/src/views/workflow/extension/formJson/index.vue b/src/views/workflow/extension/formJson/index.vue index d32848c..8872d80 100644 --- a/src/views/workflow/extension/formJson/index.vue +++ b/src/views/workflow/extension/formJson/index.vue @@ -43,8 +43,8 @@ /** * 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 * 采用vben-动态表格表单封装组件编写,采用 setup 写法 - * Copyright © 2020-2022 entfrm All rights reserved. - * author entfrm开发团队-王翔 + * Copyright © 2023-2023 海豚生态开源社区 All rights reserved. + * author wangxiang4 */ import { reactive, toRaw, unref } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; diff --git a/tsconfig.json b/tsconfig.json index 1ef3791..f2cb02a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ * vite内部使用esbuild对typescript编译成js * vite天然对typescript的支持文档: https://vitejs.bootcss.com/guide/features.html#typescript * 配置官方文档: https://www.typescriptlang.org/docs/handbook/compiler-options.html - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/6 */ { diff --git a/types/axios.d.ts b/types/axios.d.ts index a4e2ae6..7544677 100644 --- a/types/axios.d.ts +++ b/types/axios.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 请求定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/config.d.ts b/types/config.d.ts index f34aca7..ee640c3 100644 --- a/types/config.d.ts +++ b/types/config.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 应用配置定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/global.d.ts b/types/global.d.ts index 87d832d..9bc4799 100644 --- a/types/global.d.ts +++ b/types/global.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 全局定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/index.d.ts b/types/index.d.ts index 616be5d..b9fbf1b 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 通用定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/module.d.ts b/types/module.d.ts index fd7bbc3..35221b1 100644 --- a/types/module.d.ts +++ b/types/module.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 导入模块定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/store.d.ts b/types/store.d.ts index add2d36..4d5c1b9 100644 --- a/types/store.d.ts +++ b/types/store.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: pinia数据存储定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/utils.d.ts b/types/utils.d.ts index 2518a7f..c55344d 100644 --- a/types/utils.d.ts +++ b/types/utils.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 工具定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/10 */ diff --git a/types/vue-router.d.ts b/types/vue-router.d.ts index 586082a..97c1e17 100644 --- a/types/vue-router.d.ts +++ b/types/vue-router.d.ts @@ -1,7 +1,7 @@ /** * @program: kicc-ui * @description: 路由配置信息定义 - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/8 */ diff --git a/vite.config.ts b/vite.config.ts index 37dc507..972ea71 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,7 +4,7 @@ * vite采用按需打包的方式,极大的提高了打包的效率,对比其他打包工具这个是他最大的优势 * vite官网文档: https://cn.vitejs.dev/guide/why.html * vue3官方文档: https://staging-cn.vuejs.org - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/4 */ diff --git a/windi.config.ts b/windi.config.ts index f5fb6a2..0acb4fc 100644 --- a/windi.config.ts +++ b/windi.config.ts @@ -4,7 +4,7 @@ * css框架: 可定制,响应式,提取共用属性 * tailwind-css官网: https://www.tailwindcss.cn * windi-css官网: https://cn.windicss.org/guide - * @author: entfrm开发团队-王翔 + * @author: wangxaing4 * @create: 2022/4/4 */