app.d.ts 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /** 用户角色 */
  2. type ROLE = 'ADMIN' | 'CHIEF' | 'DEPUTY' | 'MARKER' | 'EXPERT' | 'SECTION_LEADER'
  3. /** 评卷员状态 */
  4. type STAGE = 'FORMAL' | 'SAMPLE_A' | 'SAMPLE_B' | 'FORCE'
  5. /** 评卷模式 */
  6. type MarkMode = 'MOUSE' | 'TRACK'
  7. /** 培训卷类型 */
  8. type SamplePaperType = 'SAMPLE_A' | 'SAMPLE_B'
  9. /** 试卷类型 */
  10. type PaperType = 'SAMPLE_A' | 'SAMPLE_B' | 'RF' | 'MARK_STANDARD' | 'STANDARD' | 'FORCE'
  11. /** 任务状态 */
  12. type TaskType = 'FORMAL' | 'SAMPLE_A' | 'SAMPLE_B' | 'FORCE' | 'STANDARD' | 'SELF_CHECK'
  13. /** 题目类型 */
  14. type QuestionCategory = 'WRITING' | 'TRANSLATION'
  15. /** 回评方式 */
  16. type RemarkType = 'TIME' | 'QUANTITY'
  17. /** 问题卷类型 */
  18. type ProblemType = 'OVERSTEP' | 'DIM'
  19. /** 仲裁卷状态 */
  20. type ArbitrationStatus = 'INITIAL' | 'VIEWED' | 'GRADED'
  21. /** 专家挑选卷卷型 */
  22. type ExpertPickType = 'SAMPLE_A' | 'SAMPLE_B' | 'RF' | 'STANDARD' | 'FORCE'
  23. declare module 'element-plus/dist/locale/zh-cn.mjs' {
  24. interface Locale {
  25. name: string
  26. el: object
  27. }
  28. export default Locale
  29. }