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 805635a9..0a90397b 100644 --- a/src/views/trials/trials-panel/reading/read-task/index.vue +++ b/src/views/trials/trials-panel/reading/read-task/index.vue @@ -177,6 +177,7 @@ custom-class="base-dialog-wrapper"> +

{{ $t('trials:readTask:applyReread:title').replace('xxx', rowData.SubjectCode).replace('yyy', rowData.TaskName) }}

{{ $t('trials:readTask:title:applyReason') }} 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 f9b99a53..00d83f18 100644 --- a/src/views/trials/trials-panel/reading/reading-tracking/index.vue +++ b/src/views/trials/trials-panel/reading/reading-tracking/index.vue @@ -460,6 +460,7 @@ custom-class="base-dialog-wrapper"> +

{{ $t('trials:reviewTrack:applyReread:title2').replace('xxx', rowData.SubjectCode).replace('yyy', rowData.TaskName) }}

{{ $t('trials:reviewTrack:applyReread:title:applyReason') }} @@ -624,6 +625,7 @@ custom-class="base-dialog-wrapper"> +

{{ $t('trials:reviewTrack:applyReread:title1').replace('xxx', rowData.SubjectCode).replace('yyy', rowData.TaskName) }}

{{ $t('trials:reviewTrack:applyReread:title:backReason') }} diff --git a/src/views/trials/trials-panel/visit/crc-upload/index.vue b/src/views/trials/trials-panel/visit/crc-upload/index.vue index 0cff08e3..81a801ae 100644 --- a/src/views/trials/trials-panel/visit/crc-upload/index.vue +++ b/src/views/trials/trials-panel/visit/crc-upload/index.vue @@ -1022,8 +1022,9 @@ export default { methods: { // 申请影像退回 async imageBack(row) { - try { - this.$prompt(`*${this.$t("trials:crcUpload:confirmMessage:ApplyReason")}`, this.$t("trials:crcUpload:confirmMessage:imageBack"), { + try { + let title = `${this.$t('trials:crcUpload:confirmMessage:imageBackTitle').replace('xxx', row.SubjectCode).replace('yyy', row.VisitName)}` + this.$prompt(`

${title}

*${this.$t("trials:crcUpload:confirmMessage:ApplyReason")}`, this.$t("trials:crcUpload:confirmMessage:imageBack"), { confirmButtonText: this.$t("common:button:save"), cancelButtonText: this.$t("common:button:cancel"), dangerouslyUseHTMLString: true, diff --git a/src/views/trials/trials-panel/visit/qc-check/index.vue b/src/views/trials/trials-panel/visit/qc-check/index.vue index 1e95f066..61990df9 100644 --- a/src/views/trials/trials-panel/visit/qc-check/index.vue +++ b/src/views/trials/trials-panel/visit/qc-check/index.vue @@ -732,7 +732,8 @@ export default { // 申请影像退回 async imageBack(row) { try { - this.$prompt(`*${this.$t("trials:crcUpload:confirmMessage:ApplyReason")}`, this.$t("trials:crcUpload:confirmMessage:imageBack"), { + let title = `${this.$t('trials:crcUpload:confirmMessage:imageBackTitle').replace('xxx', row.SubjectCode).replace('yyy', row.VisitName)}` + this.$prompt(`

${title}

*${this.$t("trials:crcUpload:confirmMessage:ApplyReason")}`, this.$t("trials:crcUpload:confirmMessage:imageBack"), { confirmButtonText: this.$t("common:button:save"), cancelButtonText: this.$t("common:button:cancel"), dangerouslyUseHTMLString: true,