|
@ -195,6 +195,16 @@ |
|
|
>导出</el-button |
|
|
>导出</el-button |
|
|
> |
|
|
> |
|
|
</el-col> |
|
|
</el-col> |
|
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
|
<el-button |
|
|
|
|
|
type="warning" |
|
|
|
|
|
plain |
|
|
|
|
|
icon="el-icon-download" |
|
|
|
|
|
size="mini" |
|
|
|
|
|
@click="handleExportBody" |
|
|
|
|
|
>导出体成分数据</el-button |
|
|
|
|
|
> |
|
|
|
|
|
</el-col> |
|
|
<right-toolbar |
|
|
<right-toolbar |
|
|
:showSearch.sync="showSearch" |
|
|
:showSearch.sync="showSearch" |
|
|
@queryTable="getList" |
|
|
@queryTable="getList" |
|
@ -1282,11 +1292,21 @@ export default { |
|
|
this.download1( |
|
|
this.download1( |
|
|
"/treatment/exportTreatment", |
|
|
"/treatment/exportTreatment", |
|
|
{ |
|
|
{ |
|
|
...this.queryParams.params, |
|
|
...this.queryParams.param, |
|
|
}, |
|
|
}, |
|
|
`诊疗档案.xlsx` |
|
|
`诊疗档案.xlsx` |
|
|
); |
|
|
); |
|
|
}, |
|
|
}, |
|
|
|
|
|
/** 导出按钮操作 */ |
|
|
|
|
|
handleExportBody() { |
|
|
|
|
|
this.download1( |
|
|
|
|
|
"/export", |
|
|
|
|
|
{ |
|
|
|
|
|
...this.queryParams.param, |
|
|
|
|
|
}, |
|
|
|
|
|
`体成分数据.xlsx` |
|
|
|
|
|
); |
|
|
|
|
|
}, |
|
|
/** 下载按钮操作 */ |
|
|
/** 下载按钮操作 */ |
|
|
handleDownload() { |
|
|
handleDownload() { |
|
|
window.open( |
|
|
window.open( |
|
|