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 {