|
|
@ -19,6 +19,21 @@ |
|
|
<i class="el-icon-document-checked"></i> |
|
|
<i class="el-icon-document-checked"></i> |
|
|
保存修改 |
|
|
保存修改 |
|
|
</div> |
|
|
</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 |
|
|
<div |
|
|
class="div-derive cardRig-but" |
|
|
class="div-derive cardRig-but" |
|
|
style="width: 130px; margin-right: 10px" |
|
|
style="width: 130px; margin-right: 10px" |
|
|
@ -323,10 +338,11 @@ import { |
|
|
addSign, |
|
|
addSign, |
|
|
doctorExport, |
|
|
doctorExport, |
|
|
personalExport, |
|
|
personalExport, |
|
|
queryReportDetail, |
|
|
queryReport, |
|
|
queryReportInfo, |
|
|
queryReportInfo, |
|
|
positiveExport, |
|
|
positiveExport, |
|
|
icdQuery, |
|
|
icdQuery, |
|
|
|
|
|
reportExportAll, |
|
|
} from "api/ams"; |
|
|
} from "api/ams"; |
|
|
import { |
|
|
import { |
|
|
pasis as pasisConfig, |
|
|
pasis as pasisConfig, |
|
|
@ -423,6 +439,8 @@ export default { |
|
|
res = await personalExport(params); |
|
|
res = await personalExport(params); |
|
|
} else if (_type === "阳性版") { |
|
|
} else if (_type === "阳性版") { |
|
|
res = await positiveExport(params); |
|
|
res = await positiveExport(params); |
|
|
|
|
|
} else if (_type === "合并版") { |
|
|
|
|
|
res = await reportExportAll(params); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const { code, msg, data } = res; |
|
|
const { code, msg, data } = res; |
|
|
@ -558,7 +576,7 @@ export default { |
|
|
const params = { |
|
|
const params = { |
|
|
evaluationId: this.$route.query.evaluationId || this.createId, |
|
|
evaluationId: this.$route.query.evaluationId || this.createId, |
|
|
}; |
|
|
}; |
|
|
const res = await queryReportDetail(params); |
|
|
const res = await queryReport(params); |
|
|
const { code, msg, data } = res; |
|
|
const { code, msg, data } = res; |
|
|
if (code === 200) { |
|
|
if (code === 200) { |
|
|
this.reportDetail1 = data; |
|
|
this.reportDetail1 = data; |
|
|
|