constant.ts 426 B

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