From 548fe6f0a0332b29217fd91129645c7ab28bcea2 Mon Sep 17 00:00:00 2001 From: wangxiang <1827945911@qq.com> Date: Sun, 8 May 2022 02:44:21 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=A3=20=E5=88=B6=E5=AE=9A=E5=BC=80?= =?UTF-8?q?=E5=8F=91=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/platform/core/controller/user.ts | 4 ++-- kicc-ui/src/api/platform/core/entity/user.ts | 4 ++-- .../src/api/platform/system/controller/user.ts | 2 +- kicc-ui/src/api/platform/system/entity/user.ts | 2 +- .../Application/src/AppDarkModeToggle.vue | 2 +- .../src/components/Application/src/AppLogo.vue | 2 +- .../src/views/system/dict/DictDataModal.vue | 18 +++++++++--------- .../src/views/system/dict/DictDataTable.vue | 8 ++++++-- kicc-ui/src/views/system/dict/DictModal.vue | 4 ++-- 9 files changed, 25 insertions(+), 21 deletions(-) diff --git a/kicc-ui/src/api/platform/core/controller/user.ts b/kicc-ui/src/api/platform/core/controller/user.ts index 596d46ad..60bcd783 100644 --- a/kicc-ui/src/api/platform/core/controller/user.ts +++ b/kicc-ui/src/api/platform/core/controller/user.ts @@ -5,9 +5,9 @@ */ import type { Captcha, User, LoginParams, TokenEnhancer } from '../entity/user'; -import type { RequestOptions } from "/#/axios"; +import type { RequestOptions } from '/#/axios'; import { encryptionLogin } from '/@/utils/cipher'; -import { useGlobSetting } from "/@/hooks/setting"; +import { useGlobSetting } from '/@/hooks/setting'; import { defHttp } from '/@/utils/http/axios'; import qs from 'qs'; diff --git a/kicc-ui/src/api/platform/core/entity/user.ts b/kicc-ui/src/api/platform/core/entity/user.ts index fb7ff323..b9db07f9 100644 --- a/kicc-ui/src/api/platform/core/entity/user.ts +++ b/kicc-ui/src/api/platform/core/entity/user.ts @@ -5,8 +5,8 @@ * @author: entfrm开发团队-王翔 * @create: 2022/4/8 */ -import type { CommonEntity } from "/@/api/common/data/entity"; -import type { KiccUser } from "/@/api/common/base/entity"; +import type { CommonEntity } from '/@/api/common/data/entity'; +import type { KiccUser } from '/@/api/common/base/entity'; /** 登录参数对象 */ export interface LoginParams { diff --git a/kicc-ui/src/api/platform/system/controller/user.ts b/kicc-ui/src/api/platform/system/controller/user.ts index 3778c33c..49125e50 100644 --- a/kicc-ui/src/api/platform/system/controller/user.ts +++ b/kicc-ui/src/api/platform/system/controller/user.ts @@ -4,7 +4,7 @@ * author entfrm开发团队-王翔 */ import type { UserParams, UserResult } from '/@/api/platform/system/entity/user'; -import type { User } from "/@/api/platform/core/entity/user"; +import type { User } from '/@/api/platform/core/entity/user'; import type { ResultVo } from '/@/api/common/base/entity'; import { defHttp } from '/@/utils/http/axios'; diff --git a/kicc-ui/src/api/platform/system/entity/user.ts b/kicc-ui/src/api/platform/system/entity/user.ts index cc8405e8..e92c189f 100644 --- a/kicc-ui/src/api/platform/system/entity/user.ts +++ b/kicc-ui/src/api/platform/system/entity/user.ts @@ -7,7 +7,7 @@ */ import type { R } from '/#/axios'; import type { Page } from '/@/api/common/data/entity'; -import type { User } from "/@/api/platform/core/entity/user"; +import type { User } from '/@/api/platform/core/entity/user'; /** 用户查询参数 */ export type UserParams = Page & User; diff --git a/kicc-ui/src/components/Application/src/AppDarkModeToggle.vue b/kicc-ui/src/components/Application/src/AppDarkModeToggle.vue index 6b07d92d..0563be35 100644 --- a/kicc-ui/src/components/Application/src/AppDarkModeToggle.vue +++ b/kicc-ui/src/components/Application/src/AppDarkModeToggle.vue @@ -1,6 +1,6 @@