自定义标记名称保存提示信息位置更改
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-07-30 15:59:45 +08:00
parent 0416b1bca8
commit 2138bd3345
2 changed files with 9 additions and 1 deletions

View File

@ -11,6 +11,14 @@
<meta http-equiv="Cache-control" content="no-store,no-cache,must-revalidate">
<meta http-equiv="Cache" content="no-cache">
<title><%= webpackConfig.name %></title>
<style>
.customPromptTip {
position: absolute;
left: 0;
bottom: -100px;
z-index: 99999;
}
</style>
<% if (eval(process.env.VUE_APP_LOGIN_FOR_PERMISSION)) { %>
<script>
window.zzSessionStorage = {

View File

@ -2945,7 +2945,7 @@ export default {
//
let message = this.$t('trials:noneDicom:message:msg1')
if (isShowCancelButton) {
message = `<div><p>${this.$t('trials:noneDicom:message:msg1')}</p><p style='font-size:12px'>${this.$t('trials:noneDicom:message:saveTip')}</p></div>`
message = `<div><p>${this.$t('trials:noneDicom:message:msg1')}</p><p style='font-size:12px' class='customPromptTip'>${this.$t('trials:noneDicom:message:saveTip')}</p></div>`
}
const { value } = await this.$prompt( message, '', {
showClose: false,