1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
795423182d
commit
ecb146bd67
|
|
@ -255,6 +255,14 @@ export function getCommonJudgeRatioList_Export(data) {
|
|||
data
|
||||
})
|
||||
}
|
||||
export function getTumor_CDISC_Export(data) {
|
||||
return requestDownload({
|
||||
url: `/Tumor_CDISC_Export/getTumor_CDISC_Export`,
|
||||
responseType: 'blob',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 导出国际化列表
|
||||
export function GetInternationalizationList_Export(data) {
|
||||
return requestDownload({
|
||||
|
|
|
|||
|
|
@ -6,10 +6,7 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<!-- 文件名称 -->
|
||||
<el-table-column
|
||||
:label="$t('trials:reviewTrack:title:fileName')"
|
||||
:min-width="50"
|
||||
>
|
||||
<el-table-column :label="$t('trials:reviewTrack:title:fileName')" :min-width="50">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.FileName }}
|
||||
</template>
|
||||
|
|
@ -17,13 +14,8 @@
|
|||
<el-table-column prop="" :label="$t('common:action:action')" min-width="80">
|
||||
<template slot-scope="scope">
|
||||
<!-- 下载 -->
|
||||
<el-button
|
||||
icon="el-icon-download"
|
||||
circle
|
||||
:title="$t('trials:reviewTrack:title:download')"
|
||||
size="mini"
|
||||
@click="handleExport(scope.row.ExportCatogory)"
|
||||
/>
|
||||
<el-button icon="el-icon-download" circle :title="$t('trials:reviewTrack:title:download')" size="mini"
|
||||
@click="handleExport(scope.row.ExportCatogory)" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
|
@ -35,6 +27,7 @@ import {
|
|||
getCommonJudgeRatioList_Export,
|
||||
getReadingTaskList_Export,
|
||||
getTrialReadingCriterionCanExportDocumentList,
|
||||
getTumor_CDISC_Export,
|
||||
getOverallTumorEvaluationList_Export,
|
||||
getEvaluationOfTumorEfficacy_Export,
|
||||
getDetailedOfEvaluatedLesion_Export,
|
||||
|
|
@ -154,11 +147,18 @@ export default {
|
|||
this.loading = false
|
||||
})
|
||||
break
|
||||
case 20:
|
||||
searchData.ReadingExportType = 20
|
||||
getTumor_CDISC_Export(searchData)
|
||||
.then((res) => { })
|
||||
.catch(() => {
|
||||
this.loading = false
|
||||
})
|
||||
break
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
<style scoped></style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue