uat_us
parent
4a93aac236
commit
fe5b1a805b
|
|
@ -209,7 +209,9 @@
|
|||
style="width: 140px;padding:0 2px;white-space: normal;word-break: break-all;word-wrap: break-word;"
|
||||
>
|
||||
{{ $t('trials:readingReport:title:sysEvaluationRes') }}
|
||||
<span style="color:red">
|
||||
<span
|
||||
style="color:red"
|
||||
>
|
||||
{{
|
||||
$fd('ExistDisease', isExistDisease) }}
|
||||
</span>
|
||||
|
|
@ -961,22 +963,14 @@ export default {
|
|||
var readingTool = this.$router.currentRoute.query.readingTool
|
||||
var path = `/readingDicoms?TrialReadingCriterionId=${trialReadingCriterionId}&trialId=${trialId}&subjectCode=${subjectCode}&subjectId=${subjectId}&visitTaskId=${task.VisitTaskId}&isReadingTaskViewInOrder=${isReadingTaskViewInOrder}&criterionType=${criterionType}&readingTool=${readingTool}&TokenKey=${token}`
|
||||
const routeData = this.$router.resolve({ path })
|
||||
let a = document.createElement('a')
|
||||
a.href = routeData.href
|
||||
a.target = '_blank'
|
||||
a.rel = 'noopener noreferrer'
|
||||
document.body.appendChild(a)
|
||||
a.click()
|
||||
document.body.removeChild(a)
|
||||
return false
|
||||
const res = await getAutoCutNextTask()
|
||||
let IsDoubleScreen = false
|
||||
if (res.IsSuccess) {
|
||||
IsDoubleScreen = res.Result.IsDoubleScreen
|
||||
}
|
||||
if (IsDoubleScreen) {
|
||||
this.openWindow = await openWindow(routeData.href)
|
||||
if (!this.openWindow) {
|
||||
this.openWindow = await openWindow(routeData.href, '', false, true)
|
||||
if (this.openWindow === false) {
|
||||
let html = `<div><span>${this.$t(
|
||||
'trials:reading:tip:MultiScreen2'
|
||||
)}</span><a style="color:#409EFF"
|
||||
|
|
@ -988,12 +982,15 @@ export default {
|
|||
dangerouslyUseHTMLString: true,
|
||||
})
|
||||
if (!confirm) return false
|
||||
this.openWindow = await openWindow(routeData.href, '', true)
|
||||
this.openWindow = await openWindow(routeData.href, '', true, true)
|
||||
}
|
||||
} else {
|
||||
this.openWindow = await openWindow(routeData.href, '', true, true)
|
||||
this.openWindow = window.open(
|
||||
routeData.href,
|
||||
'_blank',
|
||||
'noopener,noreferrer'
|
||||
)
|
||||
}
|
||||
// this.openWindow = window.open(routeData.href, '_blank')
|
||||
},
|
||||
handleSave(isPrompt) {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
|
|
|
|||
|
|
@ -1031,22 +1031,14 @@ export default {
|
|||
var readingTool = this.$router.currentRoute.query.readingTool
|
||||
var path = `/readingDicoms?TrialReadingCriterionId=${trialReadingCriterionId}&trialId=${trialId}&subjectCode=${subjectCode}&subjectId=${subjectId}&visitTaskId=${task.VisitTaskId}&isReadingTaskViewInOrder=${isReadingTaskViewInOrder}&criterionType=${criterionType}&readingTool=${readingTool}&TokenKey=${token}`
|
||||
const routeData = this.$router.resolve({ path })
|
||||
let a = document.createElement('a')
|
||||
a.href = routeData.href
|
||||
a.target = '_blank'
|
||||
a.rel = 'noopener noreferrer'
|
||||
document.body.appendChild(a)
|
||||
a.click()
|
||||
document.body.removeChild(a)
|
||||
return false
|
||||
const res = await getAutoCutNextTask()
|
||||
let IsDoubleScreen = false
|
||||
if (res.IsSuccess) {
|
||||
IsDoubleScreen = res.Result.IsDoubleScreen
|
||||
}
|
||||
if (IsDoubleScreen) {
|
||||
this.openWindow = await openWindow(routeData.href)
|
||||
if (!this.openWindow) {
|
||||
this.openWindow = await openWindow(routeData.href, '', false, true)
|
||||
if (this.openWindow === false) {
|
||||
let html = `<div><span>${this.$t(
|
||||
'trials:reading:tip:MultiScreen2'
|
||||
)}</span><a style="color:#409EFF"
|
||||
|
|
@ -1058,11 +1050,14 @@ export default {
|
|||
dangerouslyUseHTMLString: true,
|
||||
})
|
||||
if (!confirm) return false
|
||||
this.openWindow = await openWindow(routeData.href, '', true)
|
||||
this.openWindow = await openWindow(routeData.href, '', true, true)
|
||||
}
|
||||
} else {
|
||||
// this.openWindow = await openWindow(routeData.href, '', true, true)
|
||||
// this.openWindow = window.open(routeData.href, '_blank')
|
||||
this.openWindow = window.open(
|
||||
routeData.href,
|
||||
'_blank',
|
||||
'noopener,noreferrer'
|
||||
)
|
||||
}
|
||||
},
|
||||
handleSave(isPrompt) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue