From ee2e33405cb8af93356627e77bfb427a34cdae76 Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Tue, 20 May 2025 11:07:41 +0800
Subject: [PATCH] =?UTF-8?q?=E7=94=B3=E8=AF=B7=E5=8E=9F=E5=9B=A0=E5=BF=85?=
=?UTF-8?q?=E5=A1=AB=E6=B7=BB=E5=8A=A0=E6=98=9F=E5=8F=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/trials/trials-panel/visit/crc-upload/index.vue | 3 ++-
src/views/trials/trials-panel/visit/qc-check/index.vue | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
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")
},