Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
82d14ca667
2
.env.usa
2
.env.usa
|
@ -2,7 +2,7 @@
|
|||
ENV = 'production'
|
||||
NODE_ENV = 'production'
|
||||
# base public path
|
||||
VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-01-24/'
|
||||
VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-01-31/'
|
||||
|
||||
# 是否开启登陆限制 true:是 false:否
|
||||
VUE_APP_LOGIN_FOR_PERMISSION = false
|
||||
|
|
|
@ -54,6 +54,7 @@ export const anonymization = function (file, config) {
|
|||
}
|
||||
}
|
||||
}
|
||||
console.log(dataset)
|
||||
let newDicomFile = dataset.write()
|
||||
const bufferArray = new Uint8Array(newDicomFile)
|
||||
const blob = new Blob([bufferArray], { type: 'application/octet-stream' })
|
||||
|
|
|
@ -34,12 +34,12 @@
|
|||
<el-form :model="form" class="demo-form-inline" size="small">
|
||||
<el-form-item :label="$t('resumeInfo:label:GCPCertificate')">
|
||||
<span>{{ GCP }}</span>
|
||||
<el-button
|
||||
style="margin-left: 10px"
|
||||
v-if="form.GCP"
|
||||
type="text"
|
||||
@click="previewGCP()"
|
||||
>{{ $t('resumeInfo:button:view') }}</el-button>
|
||||
<!-- <el-button-->
|
||||
<!-- style="margin-left: 10px"-->
|
||||
<!-- v-if="form.GCP"-->
|
||||
<!-- type="text"-->
|
||||
<!-- @click="previewGCP()"-->
|
||||
<!-- >{{ $t('resumeInfo:button:view') }}</el-button>-->
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item :label="$t('resumeInfo:label:OtherRelevantExperience')">
|
||||
|
|
|
@ -124,7 +124,7 @@
|
|||
IRC Imaging System
|
||||
</p>
|
||||
<p style="margin-bottom: 20px">
|
||||
V1.3.0.001
|
||||
V1.3.1.001
|
||||
</p>
|
||||
<p style="margin-bottom: 20px" v-if="language === 'zh'">
|
||||
Copyright © {{ new Date().getFullYear() }} 上海展影医疗科技有限公司 版权所有
|
||||
|
|
|
@ -207,6 +207,14 @@
|
|||
:readingTaskState="readingTaskState"
|
||||
:initUrl="scope.row.Answers[task.VisitTaskId]"
|
||||
></CustomizeReportPageUpload>
|
||||
<CustomizeReportPageUpload
|
||||
v-else-if="scope.row.Type==='upload'"
|
||||
:visitTaskId="visitTaskId"
|
||||
:question="scope.row"
|
||||
:task="task"
|
||||
:readingTaskState="readingTaskState"
|
||||
:initUrl="scope.row.Answers[task.VisitTaskId]"
|
||||
></CustomizeReportPageUpload>
|
||||
</template>
|
||||
<template v-else-if="scope.row.QuestionType=== 22">
|
||||
{{ scope.row.Answers[task.VisitTaskId] === '-1' ? '未知' : scope.row.Answers[task.VisitTaskId] }}
|
||||
|
@ -750,7 +758,7 @@ export default {
|
|||
// this.$router.push({
|
||||
// path: `/readingPage?subjectCode=${subjectCode}&subjectId=${subjectId}&trialId=${trialId}&TokenKey=${token}`
|
||||
// })
|
||||
// DicomEvent.$emit('getNextTask')
|
||||
// DicomEvent.$emit('getNextTask')
|
||||
window.location.reload()
|
||||
})
|
||||
.catch(action => {
|
||||
|
|
|
@ -88,6 +88,7 @@ name: "CustomizeReportPageUpload",
|
|||
},
|
||||
mounted() {
|
||||
this.urls = this.initUrl === '' ? [] : this.initUrl.split('|')
|
||||
console.log(this.visitTaskId, this.urls)
|
||||
this.fileList = []
|
||||
this.urls.map(url => {
|
||||
this.fileList.push({ name: '', url: `${url}` })
|
||||
|
|
Loading…
Reference in New Issue