From 5892e169ce3540cd3cd68de6b572618158a0f3bc Mon Sep 17 00:00:00 2001 From: bunny <1319900154@qq.com> Date: Wed, 4 Sep 2024 15:06:41 +0800 Subject: [PATCH] =?UTF-8?q?optimize:=20=E2=99=BB=EF=B8=8F=20=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E4=B8=8D=E7=94=A8=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/enum/views/faviconConstant.ts | 10 ---------- src/enum/views/feedbackConstant.ts | 21 --------------------- src/enum/views/userConstant.ts | 25 ------------------------- 3 files changed, 56 deletions(-) delete mode 100644 src/enum/views/faviconConstant.ts delete mode 100644 src/enum/views/feedbackConstant.ts delete mode 100644 src/enum/views/userConstant.ts diff --git a/src/enum/views/faviconConstant.ts b/src/enum/views/faviconConstant.ts deleted file mode 100644 index 8332fb6..0000000 --- a/src/enum/views/faviconConstant.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { Option } from '../../../types/enum/options'; - -/** - * 图标选项 - */ -export const faviconCategory: Option[] = [ - { value: '', label: '' }, - { value: 'web', label: 'web 前台' }, - { value: 'admin', label: 'admin 后台' }, -]; diff --git a/src/enum/views/feedbackConstant.ts b/src/enum/views/feedbackConstant.ts deleted file mode 100644 index c040141..0000000 --- a/src/enum/views/feedbackConstant.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { Option } from '../../../types/enum/options'; - -/** - * * 用户反馈 - */ -export const feedback: Option[] = [ - { value: '', label: '' }, - { value: 1, label: '已处理' }, - { value: 0, label: '未处理' }, - { value: -1, label: '其它问题' }, -]; - -/** - * * 反馈类型选择 - */ -export const feedbackTypeOptions: Option[] = [ - { label: '优化建议', value: '优化建议' }, - { label: 'bug反馈', value: 'bug反馈' }, - { label: '新增功能建议', value: '新增功能建议' }, - { label: '其它', value: '其它' }, -]; diff --git a/src/enum/views/userConstant.ts b/src/enum/views/userConstant.ts deleted file mode 100644 index 6210b6c..0000000 --- a/src/enum/views/userConstant.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { Option } from '../../../types/enum/options'; - -/** - * * 布局方式 - */ -export const layoutConstant: Option[] = [ - { value: 'ltr', label: '从左到右' }, - { value: 'rtl', label: '从右到左' }, -]; - -/** - * * 文章显示模式 - */ -export const articleModeConstant: Option[] = [ - { value: 'album', label: '相册模式' }, - { value: 'list', label: '列表模式' }, -]; - -/** - * * 默认状态 - */ -export const userStatus: Option[] = [ - { value: 0, label: '启用' }, - { value: 1, label: '禁用' }, -];