ir上传dicom
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9bb856b50a
commit
f52b2f151b
|
@ -8,11 +8,11 @@ export function requestPackageAndAnonymizImage(params) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 获取影像上传列表
|
// 获取影像上传列表
|
||||||
export function getSubjectImageUploadList(params) {
|
export function getSubjectImageUploadList(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/DownloadAndUpload/getSubjectImageUploadList',
|
url: '/DownloadAndUpload/getSubjectImageUploadList',
|
||||||
method: 'get',
|
method: 'post',
|
||||||
params
|
data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 预上传
|
// 预上传
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -12,7 +12,11 @@
|
||||||
:label="$t('uploadDicomAndNonedicom:label:dicom')"
|
:label="$t('uploadDicomAndNonedicom:label:dicom')"
|
||||||
name="dicom"
|
name="dicom"
|
||||||
>
|
>
|
||||||
<dicomFile />
|
<dicomFile
|
||||||
|
:SubjectId="SubjectId"
|
||||||
|
:SubjectCode="SubjectCode"
|
||||||
|
:Criterion="Criterion"
|
||||||
|
/>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane
|
<el-tab-pane
|
||||||
:label="$t('uploadDicomAndNonedicom:label:nonedicom')"
|
:label="$t('uploadDicomAndNonedicom:label:nonedicom')"
|
||||||
|
|
|
@ -404,7 +404,7 @@ export default {
|
||||||
store.dispatch('trials/setUnLock', this.btnLoading)
|
store.dispatch('trials/setUnLock', this.btnLoading)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
created() {
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -1076,7 +1076,7 @@ export default {
|
||||||
// 按序列UUID本地归档
|
// 按序列UUID本地归档
|
||||||
parseDicomFile(file) {
|
parseDicomFile(file) {
|
||||||
var scope = this
|
var scope = this
|
||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
if (scope.scanState === 'cancelling') {
|
if (scope.scanState === 'cancelling') {
|
||||||
resolve()
|
resolve()
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue