From d79c0d0cbb739c6f368120220658c85e360cc992 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Wed, 11 Sep 2024 17:59:37 +0800 Subject: [PATCH] fix --- src/api/index.js | 80 +-- .../detail/auto.vue | 0 .../detail/index.vue | 0 .../detail/manual.vue | 0 .../detail/repeatQues.vue | 0 .../detail/template.vue | 0 src/pages/allocationReview/list/index.vue | 268 ++++++++ src/pages/allocationReview/list/progress.vue | 152 +++++ .../allocationReview/list/progressDetail.vue | 203 ++++++ src/pages/allocationReview/list/setup.vue | 501 +++++++++++++++ .../preview/index.vue | 0 src/pages/myReview/records/index.vue | 50 +- src/pages/testPaper/list/index.vue | 585 ------------------ .../{testPaper.js => allocationReview.js} | 14 +- 14 files changed, 1165 insertions(+), 688 deletions(-) rename src/pages/{testPaper => allocationReview}/detail/auto.vue (100%) rename src/pages/{testPaper => allocationReview}/detail/index.vue (100%) rename src/pages/{testPaper => allocationReview}/detail/manual.vue (100%) rename src/pages/{testPaper => allocationReview}/detail/repeatQues.vue (100%) rename src/pages/{testPaper => allocationReview}/detail/template.vue (100%) create mode 100644 src/pages/allocationReview/list/index.vue create mode 100644 src/pages/allocationReview/list/progress.vue create mode 100644 src/pages/allocationReview/list/progressDetail.vue create mode 100644 src/pages/allocationReview/list/setup.vue rename src/pages/{testPaper => allocationReview}/preview/index.vue (100%) delete mode 100644 src/pages/testPaper/list/index.vue rename src/router/modules/{testPaper.js => allocationReview.js} (59%) diff --git a/src/api/index.js b/src/api/index.js index 2643ece..4076903 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -4,81 +4,11 @@ const { apiBaseURL: host } = Setting export default { getCurrentTime: `/competition/competition/management/getCurrentTime`, encrypt: `/nakadai/data/encrypt`, - queryProfessional: `/exam/exam/professional/queryProfessional`, - queryProvince: `nakadai/nakadai/province/queryProvince`, - queryCity: `nakadai/nakadai/city/queryCity`, - querySchool: `nakadai/nakadai/school/querySchool`, + queryProvince: `/nakadai/nakadai/province/queryProvince`, + queryCity: `/nakadai/nakadai/city/queryCity`, + querySchool: `/nakadai/nakadai/school/querySchool`, - getDetailedExamScores: `exam/exam/paper/getDetailedExamScores`, - - categoriesDel: `/exam/exam/question/bank/categories/batchDeletion`, - categoriesFind: `/exam/exam/question/bank/categories/findById`, - getAllQuestionBankCategories: `/exam/exam/question/bank/categories/getAllQuestionBankCategories`, - categoriesSave: `/exam/exam/question/bank/categories/saveOrUpdate`, - categoriesDisable: `/exam/exam/question/bank/categories/updateStatus`, - - questionBankDel: `/exam/exam/questionBank/batchDeletion`, - questionBankFind: `/exam/exam/questionBank/findById`, - questionBankList: `/exam/exam/questionBank/pagingQuery`, - questionBankSave: `/exam/exam/questionBank/saveOrUpdate`, - questionBankDisable: `/exam/exam/questionBank/updateStatus`, - copyQuestionBank: `/exam/exam/questionBank/copyQuestionBank`, - questionBankStructureLevel: `/exam/exam/question/bank/categories/questionBankStructureLevel`, - - TreeStructure: `/exam/exam/knowledgeHierarchy/TreeStructure`, - classificationTreeStructure: `/exam/exam/knowledgeHierarchy/classificationTreeStructure`, - knowledgeHierarchyDel: `/exam/exam/knowledgeHierarchy/batchDeletion`, - knowledgeHierarchyFind: `/exam/exam/knowledgeHierarchy/findById`, - knowledgeHierarchySave: `/exam/exam/knowledgeHierarchy/saveOrUpdate`, - knowledgeHierarchyList: `/exam/exam/knowledgeHierarchy/pagingQuery`, - - libraryClassificationDel: `/exam/exam/libraryClassification/delete`, - libraryClassificationSave: `/exam/exam/libraryClassification/save`, - libraryClassificationList: `/exam/exam/libraryClassification/treeList`, - libraryClassificationUpdate: `/exam/exam/libraryClassification/update`, - libraryClassificationDisable: `/exam/exam/libraryClassification/updateStatus`, - libraryClassificationFind: `/exam/exam/libraryClassification/details`, - - paperLibraryDel: `/exam/exam/paperLibrary/delete`, - libraryList: `/exam/exam/paperLibrary/libraryList`, - paperLibrarySave: `/exam/exam/paperLibrary/save`, - paperLibraryUpdate: `/exam/exam/paperLibrary/update`, - paperLibraryDisable: `/exam/exam/paperLibrary/updateStatus`, - copyExamPaperLibrary: `/exam/exam/paperLibrary/copyExamPaperLibrary`, - - examClassificationDel: `/exam/exam/classification/delete`, - examClassificationSave: `/exam/exam/classification/save`, - examClassificationList: `/exam/exam/classification/treeList`, - examClassificationUpdate: `/exam/exam/classification/update`, - examClassificationFind: `/exam/exam/classification/details`, - - paperDel: `/exam/exam/paper/delete`, - examPaperList: `/exam/exam/paper/examPaperList`, - saveExamPaper: `/exam/exam/paper/saveExamPaper`, - paperDisable: `/exam/exam/paper/updateStatus`, - avgValues: `/exam/exam/paper/avgValues`, - examPaperDetails: `/exam/exam/paper/examPaperDetails`, - - deleteTemplate: `/exam/exam/paperTemplate/deleteTemplate`, - examPaperTemplateList: `/exam/exam/paperTemplate/examPaperTemplateList`, - saveExamPaperTemplate: `/exam/exam/paperTemplate/saveExamPaperTemplate`, - templateDetails: `/exam/exam/paperTemplate/templateDetails`, - - addQuestion: `/exam/exam/questions/addQuestion`, - findQuestion: `/exam/exam/questions/findById`, - listQuestion: `/exam/exam/questions/pagingQuery`, - updateQuestion: `/exam/exam/questions/updateQuestion`, - checkQuestion: `/exam/exam/questions/checkQuestion`, - delQuestion: `/exam/exam/questions/batchDeletion`, - checkQuestionIsUse: `/exam/exam/questions/checkQuestionIsUse`, - copyQuestion: `/exam/exam/questions/copyQuestion`, - createNewVersion: `/exam/exam/questions/createNewVersion`, - disableOrEnableQuestion: `/exam/exam/questions/disableOrEnableQuestion`, - findAllByQuestionBank: `/exam/exam/questions/findAllByQuestionBank`, - selectQuestionsByTypeAndDifficulty: `/exam/exam/questions/selectQuestionsByTypeAndDifficulty`, - removeQuestionKnowledge: `/exam/exam/questions/removeQuestionKnowledge`, - batchImportQuestions: `${host}/exam/exam/questions/batchImportQuestions`, - downloadQuesExcel: `${host}/exam/exam/questions/downloadExcel`, - batchImportQuesFailure: `${host}/exam/exam/questions/exportFailure`, + getDetailedExamScores: `/exam/exam/paper/getDetailedExamScores`, + reviewSettingsList: `/competition/competition/readAndAppraise/reviewSettingsList`, } \ No newline at end of file diff --git a/src/pages/testPaper/detail/auto.vue b/src/pages/allocationReview/detail/auto.vue similarity index 100% rename from src/pages/testPaper/detail/auto.vue rename to src/pages/allocationReview/detail/auto.vue diff --git a/src/pages/testPaper/detail/index.vue b/src/pages/allocationReview/detail/index.vue similarity index 100% rename from src/pages/testPaper/detail/index.vue rename to src/pages/allocationReview/detail/index.vue diff --git a/src/pages/testPaper/detail/manual.vue b/src/pages/allocationReview/detail/manual.vue similarity index 100% rename from src/pages/testPaper/detail/manual.vue rename to src/pages/allocationReview/detail/manual.vue diff --git a/src/pages/testPaper/detail/repeatQues.vue b/src/pages/allocationReview/detail/repeatQues.vue similarity index 100% rename from src/pages/testPaper/detail/repeatQues.vue rename to src/pages/allocationReview/detail/repeatQues.vue diff --git a/src/pages/testPaper/detail/template.vue b/src/pages/allocationReview/detail/template.vue similarity index 100% rename from src/pages/testPaper/detail/template.vue rename to src/pages/allocationReview/detail/template.vue diff --git a/src/pages/allocationReview/list/index.vue b/src/pages/allocationReview/list/index.vue new file mode 100644 index 0000000..612536c --- /dev/null +++ b/src/pages/allocationReview/list/index.vue @@ -0,0 +1,268 @@ + + + + + \ No newline at end of file diff --git a/src/pages/allocationReview/list/progress.vue b/src/pages/allocationReview/list/progress.vue new file mode 100644 index 0000000..26439ad --- /dev/null +++ b/src/pages/allocationReview/list/progress.vue @@ -0,0 +1,152 @@ + + + + \ No newline at end of file diff --git a/src/pages/allocationReview/list/progressDetail.vue b/src/pages/allocationReview/list/progressDetail.vue new file mode 100644 index 0000000..918a80d --- /dev/null +++ b/src/pages/allocationReview/list/progressDetail.vue @@ -0,0 +1,203 @@ + + + + \ No newline at end of file diff --git a/src/pages/allocationReview/list/setup.vue b/src/pages/allocationReview/list/setup.vue new file mode 100644 index 0000000..93fb0d3 --- /dev/null +++ b/src/pages/allocationReview/list/setup.vue @@ -0,0 +1,501 @@ + + + + \ No newline at end of file diff --git a/src/pages/testPaper/preview/index.vue b/src/pages/allocationReview/preview/index.vue similarity index 100% rename from src/pages/testPaper/preview/index.vue rename to src/pages/allocationReview/preview/index.vue diff --git a/src/pages/myReview/records/index.vue b/src/pages/myReview/records/index.vue index bd2dd0a..7ee466b 100644 --- a/src/pages/myReview/records/index.vue +++ b/src/pages/myReview/records/index.vue @@ -6,22 +6,24 @@