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
|
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) {
|
export function GetInternationalizationList_Export(data) {
|
||||||
return requestDownload({
|
return requestDownload({
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- 文件名称 -->
|
<!-- 文件名称 -->
|
||||||
<el-table-column
|
<el-table-column :label="$t('trials:reviewTrack:title:fileName')" :min-width="50">
|
||||||
:label="$t('trials:reviewTrack:title:fileName')"
|
|
||||||
:min-width="50"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.FileName }}
|
{{ scope.row.FileName }}
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -17,13 +14,8 @@
|
||||||
<el-table-column prop="" :label="$t('common:action:action')" min-width="80">
|
<el-table-column prop="" :label="$t('common:action:action')" min-width="80">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<!-- 下载 -->
|
<!-- 下载 -->
|
||||||
<el-button
|
<el-button icon="el-icon-download" circle :title="$t('trials:reviewTrack:title:download')" size="mini"
|
||||||
icon="el-icon-download"
|
@click="handleExport(scope.row.ExportCatogory)" />
|
||||||
circle
|
|
||||||
:title="$t('trials:reviewTrack:title:download')"
|
|
||||||
size="mini"
|
|
||||||
@click="handleExport(scope.row.ExportCatogory)"
|
|
||||||
/>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
@ -35,6 +27,7 @@ import {
|
||||||
getCommonJudgeRatioList_Export,
|
getCommonJudgeRatioList_Export,
|
||||||
getReadingTaskList_Export,
|
getReadingTaskList_Export,
|
||||||
getTrialReadingCriterionCanExportDocumentList,
|
getTrialReadingCriterionCanExportDocumentList,
|
||||||
|
getTumor_CDISC_Export,
|
||||||
getOverallTumorEvaluationList_Export,
|
getOverallTumorEvaluationList_Export,
|
||||||
getEvaluationOfTumorEfficacy_Export,
|
getEvaluationOfTumorEfficacy_Export,
|
||||||
getDetailedOfEvaluatedLesion_Export,
|
getDetailedOfEvaluatedLesion_Export,
|
||||||
|
|
@ -85,7 +78,7 @@ export default {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 0:
|
case 0:
|
||||||
getReadingTaskList_Export(searchData)
|
getReadingTaskList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -93,7 +86,7 @@ export default {
|
||||||
case 1:
|
case 1:
|
||||||
searchData.ReadingExportType = 1
|
searchData.ReadingExportType = 1
|
||||||
getCommonEvaluationList_Export(searchData)
|
getCommonEvaluationList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -101,7 +94,7 @@ export default {
|
||||||
case 2:
|
case 2:
|
||||||
searchData.ReadingExportType = 2
|
searchData.ReadingExportType = 2
|
||||||
getCommonEvaluationList_Export(searchData)
|
getCommonEvaluationList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -109,7 +102,7 @@ export default {
|
||||||
case 3:
|
case 3:
|
||||||
searchData.ReadingExportType = 3
|
searchData.ReadingExportType = 3
|
||||||
getCommonEvaluationList_Export(searchData)
|
getCommonEvaluationList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -117,7 +110,7 @@ export default {
|
||||||
case 4:
|
case 4:
|
||||||
searchData.ReadingExportType = 4
|
searchData.ReadingExportType = 4
|
||||||
getCommonEvaluationList_Export(searchData)
|
getCommonEvaluationList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -125,7 +118,7 @@ export default {
|
||||||
case 7:
|
case 7:
|
||||||
searchData.ReadingExportType = 7
|
searchData.ReadingExportType = 7
|
||||||
getCommonEvaluationList_Export(searchData)
|
getCommonEvaluationList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -133,7 +126,7 @@ export default {
|
||||||
case 8:
|
case 8:
|
||||||
searchData.ReadingExportType = 8
|
searchData.ReadingExportType = 8
|
||||||
getCommonEvaluationList_Export(searchData)
|
getCommonEvaluationList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -141,7 +134,7 @@ export default {
|
||||||
case 17:
|
case 17:
|
||||||
searchData.ReadingExportType = 17
|
searchData.ReadingExportType = 17
|
||||||
getCommonJudgeRatioList_Export(searchData)
|
getCommonJudgeRatioList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -149,7 +142,15 @@ export default {
|
||||||
case 18:
|
case 18:
|
||||||
searchData.ReadingExportType = 18
|
searchData.ReadingExportType = 18
|
||||||
getCommonJudgeRatioList_Export(searchData)
|
getCommonJudgeRatioList_Export(searchData)
|
||||||
.then((res) => {})
|
.then((res) => { })
|
||||||
|
.catch(() => {
|
||||||
|
this.loading = false
|
||||||
|
})
|
||||||
|
break
|
||||||
|
case 20:
|
||||||
|
searchData.ReadingExportType = 20
|
||||||
|
getTumor_CDISC_Export(searchData)
|
||||||
|
.then((res) => { })
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
|
|
@ -160,5 +161,4 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped></style>
|
||||||
</style>
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue