From 1420c5a51ef10a41f7412afa0194b2c03bcc7dfd Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Mon, 8 Jan 2024 09:53:28 +0800 Subject: [PATCH 1/3] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9bug80038?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../questionAnswerLibrary/modules/QuizModal.vue | 4 ++-- .../standard/detail/module/SubmitQuestionModal.vue | 4 ++-- .../commonPage/modules/SubmitQuestionModal.vue | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/businessSupport/questionAnswerLibrary/modules/QuizModal.vue b/src/views/businessSupport/questionAnswerLibrary/modules/QuizModal.vue index c2055ba7..74a8fa2a 100644 --- a/src/views/businessSupport/questionAnswerLibrary/modules/QuizModal.vue +++ b/src/views/businessSupport/questionAnswerLibrary/modules/QuizModal.vue @@ -66,7 +66,7 @@ :filter-option="filterOption" v-decorator="[ 'project', validatorRules.project]"> 请选择 - {{ item.projectName }} + {{ item.projectName }} @@ -208,7 +208,7 @@ export default { }, // 获取项目下拉框数据 getCarTypeProjectList () { - getCarTypeProjectList().then(res => { + getCarTypeProjectList({ column: 'createTime', order: 'desc' }).then(res => { if (res.success) { this.projectList = res.result } else { diff --git a/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue b/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue index fe7d208b..a0588b42 100644 --- a/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue +++ b/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue @@ -24,7 +24,7 @@ - {{ item.projectName }} + {{ item.projectName }} @@ -144,7 +144,7 @@ export default { }, // 获取项目下拉框数据 initProjectOptions () { - getCarTypeProjectList().then(res => { + getCarTypeProjectList({ column: 'createTime', order: 'desc' }).then(res => { if (res.success) { this.projectSelectOptions = res.result } else { diff --git a/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue b/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue index 6d031d9b..afe7ce0d 100644 --- a/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue +++ b/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue @@ -24,7 +24,7 @@ - {{ item.projectName }} + {{ item.projectName }} @@ -146,7 +146,7 @@ export default { }, // 获取项目下拉框数据 initProjectOptions () { - getCarTypeProjectList().then(res => { + getCarTypeProjectList({ column: 'createTime', order: 'desc' }).then(res => { if (res.success) { this.projectSelectOptions = res.result } else { From dbc932d7be260c7044f161a975d4ec5ab5b3edc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Mon, 8 Jan 2024 09:56:58 +0800 Subject: [PATCH 2/3] fix 79856 --- .../profileCenter/modules/ProfileCenterTreeModal.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/standardRegulationLibrary/profileCenter/modules/ProfileCenterTreeModal.vue b/src/views/standardRegulationLibrary/profileCenter/modules/ProfileCenterTreeModal.vue index ee5a70f8..e2243079 100644 --- a/src/views/standardRegulationLibrary/profileCenter/modules/ProfileCenterTreeModal.vue +++ b/src/views/standardRegulationLibrary/profileCenter/modules/ProfileCenterTreeModal.vue @@ -21,12 +21,14 @@ From bfba78facbf6c43287f6fd9a51d8d63e86cfdf3c Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Mon, 8 Jan 2024 09:57:12 +0800 Subject: [PATCH 3/3] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9bug80040?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../standard/detail/module/SubmitQuestionModal.vue | 8 +++++++- .../commonPage/modules/SubmitQuestionModal.vue | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue b/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue index a0588b42..9990f950 100644 --- a/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue +++ b/src/views/enterpriseStandardLibrary/standard/detail/module/SubmitQuestionModal.vue @@ -23,7 +23,10 @@ - + {{ item.projectName }} @@ -176,6 +179,9 @@ export default { }, close () { this.visible = false + }, + filterOption (input, option) { + return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0 } } } diff --git a/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue b/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue index afe7ce0d..37dbb2de 100644 --- a/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue +++ b/src/views/standardRegulationLibrary/commonPage/modules/SubmitQuestionModal.vue @@ -23,7 +23,10 @@ - + {{ item.projectName }} @@ -189,6 +192,9 @@ export default { }, close () { this.visible = false + }, + filterOption (input, option) { + return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0 } } }