optimize: ♻️ 删除不用内容

This commit is contained in:
bunny 2024-09-04 15:06:41 +08:00
parent 71ba1bb264
commit 5892e169ce
3 changed files with 0 additions and 56 deletions

View File

@ -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 后台' },
];

View File

@ -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: '其它' },
];

View File

@ -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: '禁用' },
];