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 d24e2cd1..0718b37c 100644
--- a/src/views/trials/trials-panel/visit/crc-upload/index.vue
+++ b/src/views/trials/trials-panel/visit/crc-upload/index.vue
@@ -1007,9 +1007,10 @@ export default {
// 申请影像退回
async imageBack(row) {
try {
- this.$prompt(this.$t("trials:crcUpload:confirmMessage:ApplyReason"), this.$t("trials:crcUpload:confirmMessage:imageBack"), {
+ this.$prompt(`*${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,
inputValidator: (val) => {
if (!val) return this.$t("common:ruleMessage:specify")
},
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 4f649655..7c678209 100644
--- a/src/views/trials/trials-panel/visit/qc-check/index.vue
+++ b/src/views/trials/trials-panel/visit/qc-check/index.vue
@@ -697,9 +697,10 @@ export default {
// 申请影像退回
async imageBack(row) {
try {
- this.$prompt(this.$t("trials:crcUpload:confirmMessage:ApplyReason"), this.$t("trials:crcUpload:confirmMessage:imageBack"), {
+ this.$prompt(`*${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,
inputValidator: (val) => {
if (!val) return this.$t("common:ruleMessage:specify")
},