crc上传获取临床数据请求参数修改
parent
0494d567db
commit
aaf9decc49
|
@ -1002,6 +1002,7 @@ export default {
|
|||
// 打开上传pet临床数据弹框
|
||||
handleUploadPetData(row) {
|
||||
this.studyData = row;
|
||||
this.studyData.SubjectId = this.subjectId;
|
||||
this.petVisible = true;
|
||||
},
|
||||
// 预览所有影像
|
||||
|
|
|
@ -318,13 +318,13 @@
|
|||
:label="$t('trials:uploadClinicalData:table:fileSize')"
|
||||
width="150"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{
|
||||
scope.row.Size && scope.row.Size > 0
|
||||
? `${(scope.row.Size / 1024 / 1024).toFixed(2)}MB`
|
||||
: 0
|
||||
}}</span>
|
||||
</template>
|
||||
<template slot-scope="scope">
|
||||
<span>{{
|
||||
scope.row.Size && scope.row.Size > 0
|
||||
? `${(scope.row.Size / 1024 / 1024).toFixed(2)}MB`
|
||||
: 0
|
||||
}}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 上传时间 -->
|
||||
<el-table-column
|
||||
|
@ -655,6 +655,8 @@ export default {
|
|||
this.data.TrialId = this.$route.query.trialId;
|
||||
var param = {
|
||||
StudyId: this.studyData.StudyId,
|
||||
TrialId: this.$route.query.trialId,
|
||||
SubjectId: this.studyData.SubjectId,
|
||||
};
|
||||
getCRCClinicalData(param)
|
||||
.then((res) => {
|
||||
|
|
Loading…
Reference in New Issue