diff --git a/src/views/trials/trials-panel/reading/read-task/index.vue b/src/views/trials/trials-panel/reading/read-task/index.vue
index 9c1811a..0c9abec 100644
--- a/src/views/trials/trials-panel/reading/read-task/index.vue
+++ b/src/views/trials/trials-panel/reading/read-task/index.vue
@@ -241,29 +241,29 @@
@click="handleReadImage(scope.row)"
/>
-
+ @click="openApplyReReading(scope.row)"
+ /> -->
-
+ /> -->
-
+ /> -->
diff --git a/src/views/trials/trials-panel/reading/reading-tracking/index.vue b/src/views/trials/trials-panel/reading/reading-tracking/index.vue
index 3ec1bf9..ad056a4 100644
--- a/src/views/trials/trials-panel/reading/reading-tracking/index.vue
+++ b/src/views/trials/trials-panel/reading/reading-tracking/index.vue
@@ -167,8 +167,11 @@
prop="DoctorUser"
:label="$t('trials:reviewAssign:searchForm:reader')"
show-overflow-tooltip
- sortable="custom"
- />
+ >
+
+ {{ scope.row.DoctorUser.UserName }}
+
+
- {{
- $t("trials:auditRecord:table:readingResult")
- }}
+ {{ $t("trials:auditRecord:table:readingResult") }}
{
return {
SubjectCode: null,
@@ -306,7 +313,30 @@ export default {
// 下载报告
downloadReport() {},
// 阅片结果
- readResult() {},
+ readResult(row) {
+ if (this.openWindow) {
+ this.openWindow.close();
+ }
+ var token = getToken();
+ var path;
+ // if (row.ReadingTool === 0) {
+ path = `/readingDicoms?TrialReadingCriterionId=${
+ row.TrialReadingCriterionId
+ }&trialId=${this.$route.query.trialId}&subjectCode=${
+ row.SubjectCode
+ }&subjectId=${row.SubjectId}&visitTaskId=${
+ row.Id
+ }&isReadingTaskViewInOrder=${true}&criterionType=${
+ row.CriterionType
+ }&readingTool=${row.ReadingTool}&TokenKey=${token}`;
+ // } else {
+ // path = `/noneDicomReading?TrialReadingCriterionId=${row.TrialReadingCriterionId}&trialId=${this.trialId}&subjectCode=${row.SubjectCode}&subjectId=${row.SubjectId}&visitTaskId=${row.Id}&isReadingTaskViewInOrder=${row.IsReadingTaskViewInOrder}&criterionType=${row.CriterionType}&readingTool=${row.ReadingTool}&TokenKey=${token}`;
+ // }
+ // const routeData = this.$router.resolve({
+ // path: `/readingPage?subjectId=${row.SubjectId}&trialId=${row.TrialId}&visitTaskId=${row.Id}&TokenKey=${token}`
+ // })
+ this.openWindow = window.open(path, "_blank");
+ },
},
};