Compare commits
No commits in common. "dbdbed3556ef4c49f199f35659d4984c8d016b0c" and "2d93a1a5acba479873556bae559a7ca61c19226e" have entirely different histories.
dbdbed3556
...
2d93a1a5ac
|
@ -1002,7 +1002,6 @@ export default {
|
||||||
// 打开上传pet临床数据弹框
|
// 打开上传pet临床数据弹框
|
||||||
handleUploadPetData(row) {
|
handleUploadPetData(row) {
|
||||||
this.studyData = row;
|
this.studyData = row;
|
||||||
this.studyData.SubjectId = this.subjectId;
|
|
||||||
this.petVisible = true;
|
this.petVisible = true;
|
||||||
},
|
},
|
||||||
// 预览所有影像
|
// 预览所有影像
|
||||||
|
|
|
@ -318,13 +318,13 @@
|
||||||
:label="$t('trials:uploadClinicalData:table:fileSize')"
|
:label="$t('trials:uploadClinicalData:table:fileSize')"
|
||||||
width="150"
|
width="150"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{
|
<span>{{
|
||||||
scope.row.Size && scope.row.Size > 0
|
scope.row.Size && scope.row.Size > 0
|
||||||
? `${(scope.row.Size / 1024 / 1024).toFixed(2)}MB`
|
? `${(scope.row.Size / 1024 / 1024).toFixed(2)}MB`
|
||||||
: 0
|
: 0
|
||||||
}}</span>
|
}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- 上传时间 -->
|
<!-- 上传时间 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -655,8 +655,6 @@ export default {
|
||||||
this.data.TrialId = this.$route.query.trialId;
|
this.data.TrialId = this.$route.query.trialId;
|
||||||
var param = {
|
var param = {
|
||||||
StudyId: this.studyData.StudyId,
|
StudyId: this.studyData.StudyId,
|
||||||
TrialId: this.$route.query.trialId,
|
|
||||||
SubjectId: this.studyData.SubjectId,
|
|
||||||
};
|
};
|
||||||
getCRCClinicalData(param)
|
getCRCClinicalData(param)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|
Loading…
Reference in New Issue