From 4efeb1724b94dd0fee7541883d0074cc2395346c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com>
Date: Fri, 12 Apr 2024 09:36:35 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/record/record.vue | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/views/system/record/record.vue b/src/views/system/record/record.vue
index 9ef9e0b..a0672cb 100644
--- a/src/views/system/record/record.vue
+++ b/src/views/system/record/record.vue
@@ -483,9 +483,8 @@ export default {
) {
e.checked = el.id;
} else if (
- (el.optionChooseSign == "0" &&
- e.questionType == "MULTIPLE_CHOICE_QUESTIONS") ||
- e.questionType == "COMBINATION_MULTIPLE_SUBJECT"
+ el.optionChooseSign == "0" &&
+ e.questionType == "MULTIPLE_CHOICE_QUESTIONS"
) {
this.checkeddata.push(el.id);
} else if (
@@ -493,6 +492,11 @@ export default {
e.questionType == "SCORING_QUESTIONS"
) {
e.checked = el.id;
+ } else if (
+ e.questionType == "COMBINATION_MULTIPLE_SUBJECT" &&
+ el.optionChooseSign == "0"
+ ) {
+ this.checkeddata.push(el.id);
}
});
});
From 1a480946323bc8ef64947e113a4d161d831b8eca Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com>
Date: Fri, 12 Apr 2024 10:18:56 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/record/record.vue | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/views/system/record/record.vue b/src/views/system/record/record.vue
index a0672cb..33540f6 100644
--- a/src/views/system/record/record.vue
+++ b/src/views/system/record/record.vue
@@ -380,6 +380,7 @@
@@ -554,6 +555,11 @@ export default {
};
\ No newline at end of file
+
diff --git a/src/views/manage/manualReview/index.vue b/src/views/manage/manualReview/index.vue
index a6ed3b3..ee6f01a 100644
--- a/src/views/manage/manualReview/index.vue
+++ b/src/views/manage/manualReview/index.vue
@@ -210,22 +210,12 @@ export default {
},
/** 审核操作 */
handleAuthRole(row) {
- // this.$router.push({
- // path: "/patient/patientdetails",
- // query: {
- // patientId: row.id,
- // cardNo: row.cardNo,
- // patientName: row.patientName,
- // patientPhone: row.patientPhone,
- // sex: row.sex,
- // birthDate: row.birthDate,
- // familyMemberPhone: row.familyMemberPhone,
- // address: row.address,
- // patientSource: row.patientSource,
- // createTime: row.createTime,
- // age: row.birthDate ? getAge(row.birthDate) : ''
- // },
- // });
+ this.$router.push({
+ path: "/task/Auditing",
+ query: {
+ patientId: row.patientId,
+ },
+ });
},
/** 查询患者信息列表 */
getList() {
@@ -358,4 +348,4 @@ export default {
},
}
};
-
\ No newline at end of file
+
diff --git a/src/views/manage/patientInfo/index.vue b/src/views/manage/patientInfo/index.vue
index 85b5cef..8a3c6ad 100644
--- a/src/views/manage/patientInfo/index.vue
+++ b/src/views/manage/patientInfo/index.vue
@@ -231,7 +231,6 @@ export default {
},
/** 详情操作 */
handleAuthRole(row) {
-
this.$router.push({
path: "/patient/patientdetails",
query: {
From 67897c7417f9f3eb62c5b09ce2a8adde63254d4a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com>
Date: Fri, 12 Apr 2024 10:23:12 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/manage/Auditing.js | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 src/api/manage/Auditing.js
diff --git a/src/api/manage/Auditing.js b/src/api/manage/Auditing.js
new file mode 100644
index 0000000..6667d3e
--- /dev/null
+++ b/src/api/manage/Auditing.js
@@ -0,0 +1,11 @@
+import request from '@/utils/request'
+
+// 查询管理任务路径及节点
+export function getRouteNodeList(query) {
+ return request({
+ url: '/manage/signnode/getRouteNodeList',
+ method: 'get',
+ params: query
+ })
+}
+