From 5c564366c4d0ad1a1a1de932a92471ec7291de18 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Sat, 14 Sep 2024 10:59:51 +0800 Subject: [PATCH] fix --- src/api/index.js | 2 + src/layouts/home/index.vue | 5 +- src/layouts/navbar/index.vue | 74 +------- .../allocationReview/records/allocation.vue | 171 +++++++++--------- src/pages/allocationReview/records/index.vue | 13 +- src/pages/allocationReview/records/people.vue | 30 +-- src/styles/common.scss | 1 + 7 files changed, 121 insertions(+), 175 deletions(-) diff --git a/src/api/index.js b/src/api/index.js index 21fcb50..40ad05a 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -16,4 +16,6 @@ export default { evaluationSave: `/nakadai/evaluation/saveOrUpdate`, evaluationFind: `/nakadai/evaluation/findById`, competitionUserReport: `/nakadai/evaluation/competitionUserReport`, + examPaperDetails: `/exam/exam/paper/examPaperDetails`, + getPaperQuestionInfoByReviewSetting: `/nakadai/evaluation/getPaperQuestionInfoByReviewSetting`, } \ No newline at end of file diff --git a/src/layouts/home/index.vue b/src/layouts/home/index.vue index 8266163..dba3487 100644 --- a/src/layouts/home/index.vue +++ b/src/layouts/home/index.vue @@ -43,12 +43,11 @@ export default { overflow: hidden; .nav { - width: 256px; + width: 190px; } .layout { - width: calc(100% - 256px); - + width: calc(100% - 190px); .content { height: 100vh; diff --git a/src/layouts/navbar/index.vue b/src/layouts/navbar/index.vue index 420225f..85c6158 100644 --- a/src/layouts/navbar/index.vue +++ b/src/layouts/navbar/index.vue @@ -1,12 +1,8 @@ -
+

暂无数据

@@ -97,13 +99,13 @@ export default { }; }, watch: { - 'quesBankKeyword': function (val) { + quesBankKeyword: function () { clearTimeout(this.searchTimer) this.searchTimer = setTimeout(this.initQuesBank, 500) }, - 'userKeyword': function (val) { + userKeyword: function () { clearTimeout(this.searchTimer) - this.searchTimer = setTimeout(this.getKnowledge, 500) + this.searchTimer = setTimeout(this.getNakadaiUser, 500) }, }, mounted () { @@ -266,7 +268,6 @@ export default {