optimize: ♻️ 删除不用内容
This commit is contained in:
parent
71ba1bb264
commit
5892e169ce
|
@ -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 后台' },
|
||||
];
|
|
@ -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: '其它' },
|
||||
];
|
|
@ -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: '禁用' },
|
||||
];
|
Loading…
Reference in New Issue