diff --git a/src/views/trials/trials-inspection/components/pull-image-list.vue b/src/views/trials/trials-inspection/components/pull-image-list.vue
index ed388b7..a1675b2 100644
--- a/src/views/trials/trials-inspection/components/pull-image-list.vue
+++ b/src/views/trials/trials-inspection/components/pull-image-list.vue
@@ -6,7 +6,10 @@
custom-class="upload-dialog"
:before-close="beforeCloseStudyDig"
>
- {{ $t('trials:inspection:title:pullImage') }}
+
+ {{ $t('trials:inspection:title:pullImage') }}
+ {{ tip }}
+
@@ -523,6 +526,39 @@ export default {
},
}
},
+ tip() {
+ if (!this.searchData.PacsDicomAEId) return ''
+ let message = `( ${this.$t('trials:inspection:pullImage:PacsTip')} )`
+ message = message.replace(
+ 'xxx',
+ this.AElist.find((item) => item.Id === this.searchData.PacsDicomAEId)
+ .CalledAE
+ )
+ if (!this.timeFrame) {
+ message = message.replace(
+ 'yyy',
+ this.$t('trials:inspection:pullImage:unlimit')
+ )
+ } else {
+ message = message.replace(
+ 'yyy',
+ `${this.timeFrame}${this.$t('trials:inspection:unit:day')}`
+ )
+ }
+ if (!this.MaxStudyCount) {
+ message = message.replace(
+ 'zzz',
+ this.$t('trials:inspection:pullImage:unlimit')
+ )
+ } else {
+ message = message.replace(
+ 'zzz',
+ `${this.MaxStudyCount}${this.$t('trials:inspection:unit:article')}`
+ )
+ }
+ message = message.replace('kkk', this.ModalityList.join(','))
+ return message
+ },
},
created() {
this.getAEList()