|
|
|
@ -19,6 +19,21 @@ |
|
|
|
<i class="el-icon-document-checked"></i> |
|
|
|
保存修改 |
|
|
|
</div> |
|
|
|
<div |
|
|
|
class="div-derive cardRig-but" |
|
|
|
style="width: 130px; margin-right: 10px" |
|
|
|
@click="handleExport('合并版', true)" |
|
|
|
> |
|
|
|
<i class="el-icon-upload2"></i>导出(合并版) |
|
|
|
</div> |
|
|
|
<div |
|
|
|
v-if="!isAPP" |
|
|
|
class="div-print cardRig-but" |
|
|
|
@click="handlePrinting('合并版')" |
|
|
|
style="width: 130px; margin-right: 10px" |
|
|
|
> |
|
|
|
<i class="el-icon-printer"></i>打印(合并版) |
|
|
|
</div> |
|
|
|
<div |
|
|
|
class="div-derive cardRig-but" |
|
|
|
style="width: 130px; margin-right: 10px" |
|
|
|
@ -327,6 +342,7 @@ import { |
|
|
|
queryReportInfo, |
|
|
|
positiveExport, |
|
|
|
icdQuery, |
|
|
|
reportExportAll, |
|
|
|
} from "api/ams"; |
|
|
|
import { |
|
|
|
pasis as pasisConfig, |
|
|
|
@ -423,6 +439,8 @@ export default { |
|
|
|
res = await personalExport(params); |
|
|
|
} else if (_type === "阳性版") { |
|
|
|
res = await positiveExport(params); |
|
|
|
} else if (_type === "合并版") { |
|
|
|
res = await reportExportAll(params); |
|
|
|
} |
|
|
|
|
|
|
|
const { code, msg, data } = res; |
|
|
|
|