import { STATUS } from '@/api/feedback/feedback'; export const tabContent = [ { name: '未处理yyds', value: STATUS.unhandled }, { name: '已处理亚克西', value: STATUS.handled }, ]; enum ProblemType { 'system' = 1, 'product' = 2, 'other' = 3, } export const problemTypeName = { [ProblemType.system]: '系统操作问题', [ProblemType.product]: '产品内容问题', [ProblemType.other]: '其他', };