diff --git a/src/views/manage/Auditing/index.vue b/src/views/manage/Auditing/index.vue
index caf2e1b..82a578c 100644
--- a/src/views/manage/Auditing/index.vue
+++ b/src/views/manage/Auditing/index.vue
@@ -83,18 +83,10 @@
-
- 与现实生活一致:与现实生活的流程、逻辑保持一致,遵循用户习惯的语言和概念;
- 在界面中一致:所有的元素和结构需保持一致,比如:设计样式、图标和文本、元素的位置等。
-
-
- 用户决策:根据场景可给予用户操作建议或安全提示,但不能代替用户进行决策;
- 结果可控:用户可以自由的进行操作,包括撤销、回退和终止当前操作等。
-
-
- 简化流程:设计简洁直观的操作流程;
- 清晰明确:语言表达清晰且表意明确,让用户快速理解进而作出决策;
- 帮助用户识别:界面简单直白,让用户快速识别而非回忆,减少用户记忆负担。
+
+
+ {{ uitem.propagandaTitle }}
@@ -124,6 +116,9 @@ export default {
info() {
getRouteNodeList({ patientId: this.$route.query.patientId, taskCreateType: 'MANUAL_CREATE' }).then(res => {
this.nodelist = res.data
+ this.nodelist.forEach(e => {
+ this.activeNames.push(e.manageRouteId)
+ })
})
},
cancel() {
@@ -137,6 +132,11 @@ export default {
};
diff --git a/src/views/system/addQuestionnaire/index.vue b/src/views/system/addQuestionnaire/index.vue
index 2f1ab50..083f462 100644
--- a/src/views/system/addQuestionnaire/index.vue
+++ b/src/views/system/addQuestionnaire/index.vue
@@ -525,7 +525,7 @@ export default {
questionnaireDescription: undefined,
questionnaireTotalScore: 0, //总分
questionSubjectList: [],
- questionType: "",
+ questionType: undefined,
},
//题目arr
questionlist: [],
@@ -1020,6 +1020,10 @@ export default {
},
//保存
upload() {
+ if (!this.list.questionType) {
+ this.$message.error('请选择问卷类型!');
+ return
+ }
this.list.questionSubjectList = []
this.questionlist.forEach((e, eindex) => {
e.questionNumber = eindex + 1