constants.js 870 B

12345678910111213141516171819202122
  1. export const core_api = "/api/ecs_core";
  2. export const LEVEL_TYPE = [
  3. { label: "专升本", value: "ZSB" },
  4. { label: "高起专", value: "GQZ" },
  5. { label: "高起本", value: "GQB" },
  6. { label: "不限", value: "ALL" }
  7. ];
  8. export const ENABLE_TYPE = [
  9. { label: "启用", value: true },
  10. { label: "禁用", value: false }
  11. ];
  12. export const ROLE_TYPE = [
  13. { code: "ECS_QUES_INPUTER", name: "题库录入员" },
  14. { code: "ECS_QUES_AUDITER", name: "题库审核员" },
  15. { code: "ECS_QUES_GENER", name: "题库组卷员" },
  16. { code: "ECS_QUES_ADMIN", name: "题库管理员" },
  17. { code: "ECS_MARKING_MARKER", name: "阅卷评卷员" },
  18. { code: "ECS_MARKING_ADMIN", name: "阅卷管理员" },
  19. { code: "ECS_OE_STUDENT", name: "网考考生" },
  20. { code: "ECS_OE_ADMIN", name: "网考管理员" }
  21. ];
  22. export const PERMISSION_TYPE = { MENU: "MENU", PAGE: "PAGE" };