Blame view

src/api/urls/answerSheet.js 630 Bytes
65f592b6   梁保满   答题卡列表页
1
2
3
  export default {
    // 答题卡列表
    answerList: "/apis/answerList",
13b58a42   梁保满   备题组卷部分前端页面基本完成
4
    // 测验类型
65f592b6   梁保满   答题卡列表页
5
    typeNames: "/apis/typeNames",
13b58a42   梁保满   备题组卷部分前端页面基本完成
6
7
    // 查找年级
    gradeList: "/apis/gradeList",
65f592b6   梁保满   答题卡列表页
8
9
10
11
    // 查找班级
    classList: "/apis/classList",
    // 查找科目
    subjectList: "/apis/subjectList",
13b58a42   梁保满   备题组卷部分前端页面基本完成
12
13
14
15
16
17
18
19
20
21
    // 天假答题卡测验类型
    addAnswerTypeName: "/apis/addAnswerTypeName",
    // 保存答题卡
    saveAnswerSheet: "/apis/saveAnswerSheet",
    // 删除答题卡
    removeAnswerSheet: "/apis/removeAnswerSheet",
    // 恢复使用答题卡
    useAnswerSheet: "/apis/useAnswerSheet",
    // 更新答题卡
    updateAnswerSheet: "/apis/updateAnswerSheet",
65f592b6   梁保满   答题卡列表页
22
  }