From 33485009a22966cb8091a0e52a4a6e994715876e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E4=BD=B3=E7=82=9C?= <1503983799@qq.com> Date: Fri, 7 Mar 2025 09:11:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E5=AF=BC=E6=A3=80=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/summary/index.ts | 6 + src/views/inspect/physicalEnroll/index.vue | 38 +- src/views/summary/examination/index.vue | 7 +- src/views/summary/print/printData.js | 1 + src/views/summary/print/template.js | 5222 ++++++++++++++++++-- 5 files changed, 4924 insertions(+), 350 deletions(-) diff --git a/src/api/summary/index.ts b/src/api/summary/index.ts index 044ac29..0f8b7ac 100644 --- a/src/api/summary/index.ts +++ b/src/api/summary/index.ts @@ -52,6 +52,12 @@ export const isExistUncheck = (medicalSn: String) => { return request.get({ url: '/checkup/result/isExistUncheck?medicalSn=' + medicalSn }) } +// 打印模板的数据 +export const printInfoOfMedicalSn = (medicalSn: String) => { + return request.get({ url: '/checkup/result/printInfoOfMedicalSn?medicalSn=' + medicalSn }) +} + + // 用户密码重置 export const resetUserPwd = (id: number, password: string) => { const data = { diff --git a/src/views/inspect/physicalEnroll/index.vue b/src/views/inspect/physicalEnroll/index.vue index 3f1ba2a..660e4b9 100644 --- a/src/views/inspect/physicalEnroll/index.vue +++ b/src/views/inspect/physicalEnroll/index.vue @@ -785,6 +785,12 @@ import { ExammoduleApi } from '@/api/inspect/exammodule' import { DepartmentApi, DepartmentVO } from '@/api/inspect/inspectdepartment/index' import Viewer from 'viewerjs' import { debounce } from 'lodash-es' +import * as SummaryApi from "@/api/summary"; +import {newHiprintPrintTemplate} from "@/views/summary/utils/template-helper"; +import {ref} from "vue"; +import template from "@/views/summary/print/template"; +import {usePaper} from "@/views/summary/hooks/use-paper"; +import {useZoom} from "@/views/summary/hooks/use-zoom"; defineOptions({ name: 'PhysicalEnroll' }) /* @@ -1105,9 +1111,38 @@ const handlePersonInfoCancel = () => { } } -const handlePersonInfoPrintInspection = () => { +const printMedicalSn = ref(); +const templateRef = ref(template); +let hiprintTemplate; +const TEMPLATE_KEY = getCurrentInstance().type.name; // 存储模板对象的 key +const { paperTypes, curPaperType, paperPopVisible, paperWidth, paperHeight, showPaperPop, setPaper, setPaperOther } = usePaper(TEMPLATE_KEY); +const { scaleValue, changeScale } = useZoom(TEMPLATE_KEY); +const handlePersonInfoPrintInspection = async () => { personInfoDelete.value = !personInfoDelete.value personInfoEdit.value = !personInfoEdit.value + console.log('printMedicalSn',printMedicalSn.value) + //打印导检单 + const dataPrint = await SummaryApi.printInfoOfMedicalSn(printMedicalSn.value) + hiprintTemplate = newHiprintPrintTemplate(TEMPLATE_KEY, { + template: templateRef.value, // 模板json(object) + settingContainer: "#PrintElementOptionSetting", // 元素参数容器 + }); + // 参数: 打印时设置 左偏移量,上偏移量 + let options = {leftOffset: -1, topOffset: -1}; + // 扩展 + let ext = { + callback: () => { + console.log("浏览器打印窗口已打开"); + }, + styleHandler: () => { + // 重写 文本 打印样式 + return ""; + }, + }; + // 调用浏览器打印 + hiprintTemplate.print(dataPrint, options, ext); + + } /** 获取患者列表数据 **/ @@ -1333,6 +1368,7 @@ const handlePatientSelect = async (row) => { // 如果有体检编号,加载体检项目 if (res.medicalSn) { + printMedicalSn.value = res.medicalSn await loadPatientProjects(res.medicalSn) } else { comboInfoTable1.value = [] diff --git a/src/views/summary/examination/index.vue b/src/views/summary/examination/index.vue index 2689361..fb57c9f 100644 --- a/src/views/summary/examination/index.vue +++ b/src/views/summary/examination/index.vue @@ -175,13 +175,14 @@ let hiprintTemplate; const TEMPLATE_KEY = getCurrentInstance().type.name; // 存储模板对象的 key const { paperTypes, curPaperType, paperPopVisible, paperWidth, paperHeight, showPaperPop, setPaper, setPaperOther } = usePaper(TEMPLATE_KEY); const { scaleValue, changeScale } = useZoom(TEMPLATE_KEY); -const goto = () =>{ +const goto = async () => { + const dataPrint = await SummaryApi.printInfoOfMedicalSn("17407232640657956") hiprintTemplate = newHiprintPrintTemplate(TEMPLATE_KEY, { template: templateRef.value, // 模板json(object) settingContainer: "#PrintElementOptionSetting", // 元素参数容器 }); // 参数: 打印时设置 左偏移量,上偏移量 - let options = { leftOffset: -1, topOffset: -1 }; + let options = {leftOffset: -1, topOffset: -1}; // 扩展 let ext = { callback: () => { @@ -193,7 +194,7 @@ const goto = () =>{ }, }; // 调用浏览器打印 - hiprintTemplate.print(printData, options, ext); + hiprintTemplate.print(dataPrint, options, ext); } const { t } = useI18n() // 国际化 diff --git a/src/views/summary/print/printData.js b/src/views/summary/print/printData.js index 8ac1fe8..264f342 100644 --- a/src/views/summary/print/printData.js +++ b/src/views/summary/print/printData.js @@ -1,4 +1,5 @@ export default { + barcode:"11111", name: "黄磊", logoTest: "https://portrait.gitee.com/uploads/avatars/user/1800/5400665_CcSimple_1591166830.png!avatar60", password: "12346", diff --git a/src/views/summary/print/template.js b/src/views/summary/print/template.js index d162efb..324a104 100644 --- a/src/views/summary/print/template.js +++ b/src/views/summary/print/template.js @@ -362,14 +362,14 @@ ], };*/ -export default { +/*export default { panels: [ { "index": 0, - "paperType": "A4", + "paperType":"A4", "height": 297, "width": 210, - "paperHeader": 88.5, + "paperHeader": 49.5, "paperFooter": 780, "printElements": [ { @@ -384,20 +384,7 @@ export default { }, { "options": {"left": 99, "top": 7.5, "height": 40.5, "width": 16.5, "title": "扫码关注"}, "printElementType": {"type": "text"} - },/* { - "options": { - "left": 414, - "top": 7.5, - "height": 34, - "width": 175, - "testData": "123456789", - "field": "barcode", - "title": "123456789", - "fontFamily": "微软雅黑", - "textAlign": "center", - "textType": "barcode" - }, "printElementType": {"title": "自定义文本", "type": "text"} - },*/ { + }, { "options": { "left": 414, "top": 7.5, @@ -482,324 +469,441 @@ export default { }, { "options": {"left": 45, "top": 97.5, "height": 9, "width": 528}, "printElementType": {"type": "hline"} + }, + { + "options": {"left": 100.5, "top": 78, "height": 322.5, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 493.5, "top": 78, "height": 322.5, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 78, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": {"left": 553.5, "top": 78, "height": 322.5, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 78, "height": 322.5, "width": 9}, + "printElementType": {"type": "vline"} }, { "options": { - "left": 36, - "top": 106.5, - "height": 36, - "width": 550, - "columns": [[{ - "title": "医生签名", - "width": 100, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "餐前检查项日", - "field": "", - "width": 275, - "colspan": 2, - "rowspan": 1, - "checked": true - }, { - "title": "放弃签名", - "width": 100, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "width": 71.59763313609467, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "检查", - "width": 89.53474112426034, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "", - "field": "examine2", - "width": 304.25224112426037, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 84.61538461538461, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "title": "医生签名", - "width": 160.24031472353565, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "营养早餐", - "width": 200.38476787592222, - "colspan": 2, - "rowspan": 1, - "checked": true - }, { - "title": "放弃签名", - "width": 189.37491740054216, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "width": 75.11531472353565, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "餐厅", - "width": 82.68063393796109, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "【免费早餐】", - "width": 202.8291339379611, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 189.37491740054216, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "title": "医生签名", - "width": 75.11531472353565, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "餐后检查项目", - "width": 82.68063393796108, - "colspan": 2, - "rowspan": 1, - "checked": true - }, { - "title": "放弃签名", - "width": 189.37491740054216, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "width": 75.11531472353565, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "基础检查", - "width": 82.68063393796108, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "", - "field": "examine1", - "width": 202.8291339379611, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 189.37491740054216, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "title": "医生签名", - "width": 75.11531472353565, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "其他检查", - "width": 82.68063393796108, - "colspan": 2, - "rowspan": 1, - "checked": true - }, { - "title": "放弃签名", - "width": 189.37491740054216, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "width": 75.11531472353565, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "其他科室", - "width": 82.68063393796108, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "", - "field": "examine3", - "width": 202.8291339379611, - "colspan": 1, - "rowspan": 1, - "checked": true - }, {"width": 189.37491740054216, "colspan": 1, "rowspan": 1, "checked": true}]] - }, "printElementType": {"title": "表格", "type": "table"} - }, { - "options": { - "left": 36, - "top": 155, - "height": 15, + "left": 237, + "top": 87, + "height": 9.75, "width": 120, + "title": "餐前检查项日", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 498, + "top": 87, + "height": 9.75, + "width": 51, + "title": "放弃签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 40.5, + "top": 87, + "height": 9.75, + "width": 52.5, + "title": "医生签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 171, "top": 102, "height": 57, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 102, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": {"left": 174, "top": 105, "height": 51, "width": 318, "field": "mealFront"}, + "printElementType": {"type": "longText"} + }, { + "options": { + "left": 111, + "top": 124.5, + "height": 9.75, + "width": 46.5, + "title": "检查", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 159, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 237, + "top": 166.5, + "height": 9.75, + "width": 120, + "title": "营养早餐", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 498, + "top": 169.5, + "height": 9.75, + "width": 48, + "title": "放弃签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 40.5, + "top": 169.5, + "height": 9.75, + "width": 51, + "title": "医生签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 171, "top": 184.5, "height": 39, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 184.5, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": {"left": 174, "top": 190.5, "height": 27, "width": 315, "title": "【免费早餐】"}, + "printElementType": {"type": "longText"} + }, { + "options": { + "left": 109.5, + "top": 204, + "height": 9.75, + "width": 43.5, + "title": "餐厅", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 223.5, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 40.5, + "top": 234, + "height": 9.75, + "width": 49.5, + "title": "医生签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 498, + "top": 234, + "height": 9.75, + "width": 49.5, + "title": "放弃签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 237, + "top": 235.5, + "height": 9.75, + "width": 120, + "title": "餐后检查项目", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 171, "top": 252, "height": 60, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 252, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 172.5, + "top": 256.5, + "height": 52.5, + "width": 316.5, + "field": "mealAfter" + }, "printElementType": {"type": "longText"} + }, { + "options": { + "left": 106.5, + "top": 280.5, + "height": 9.75, + "width": 52.5, + "title": "基础检查", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 312, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 237, + "top": 319.5, + "height": 9.75, + "width": 120, + "title": "其他项目", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 498, + "top": 319.5, + "height": 9.75, + "width": 48, + "title": "放弃签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 40.5, + "top": 319.5, + "height": 9.75, + "width": 51, + "title": "医生签名", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 171, "top": 339, "height": 61.5, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 339, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 172.5, + "top": 343.5, + "height": 54, + "width": 316.5, + "field": "mealOther" + }, "printElementType": {"type": "longText"} + }, { + "options": { + "left": 108, + "top": 364.5, + "height": 9.75, + "width": 55.5, + "title": "其他科室", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 400.5, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 36, + "top": 409.5, + "height": 9.75, + "width": 135, "title": "以下内容由体检护士填写", "fontSize": 10.5, - "lineHeight": 12 + "fontWeight": "bold" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 211.5, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 295.5, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 403.5, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 124.5, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 484.5, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 426, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": {"left": 553.5, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": {"left": 36, "top": 426, "height": 87, "width": 9}, + "printElementType": {"type": "vline"} + }, { + "options": { + "left": 216, + "top": 435, + "height": 9.75, + "width": 78, + "title": "腰围(cm)臀围(cm)", + "textAlign": "center" }, "printElementType": {"type": "text"} }, { "options": { - "left": 36, - "top": 178, - "height": 36, - "width": 550, - "columns": [[{ - "title": "身高(cm)/体重(kg)", - "width": 79.97132944399706, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": " / ", - "width": 82.66907944399708, - "colspan": 1, - "rowspan": 1, - "align": "center", - "checked": true - }, { - "title": "腰围(cm)臀围(cm)", - "field": "", - "width": 83.25571070690796, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "/", - "width": 118.22236265361866, - "colspan": 1, - "rowspan": 1, - "align": "center", - "checked": true - }, { - "title": "护士签字", - "width": 101.26613313609462, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 84.61538461538461, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "title": "血压(mmHg)", - "width": 79.97132944399706, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "", - "field": "", - "width": 82.66907944399708, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "复测血压(mmHtg)", - "width": 83.25571070690796, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 118.22236265361866, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "心率", - "width": 101.26613313609462, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 84.61538461538461, - "colspan": 1, - "rowspan": 1, - "checked": true - }], [{ - "title": "裸视力", - "width": 84.09557944399708, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "", - "field": "", - "width": 86.43182944399706, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "矫正视力", - "width": 74.70871070690794, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "width": 118.8823626536187, - "colspan": 1, - "rowspan": 1, - "checked": true - }, { - "title": "辨色力", - "width": 101.26613313609462, - "colspan": 1, - "rowspan": 1, - "checked": true - }, {"width": 84.61538461538461, "colspan": 1, "rowspan": 1, "checked": true}]] - }, "printElementType": {"title": "表格", "type": "table"} - }, { - "options": {"left": 334.5, "top": 417, "height": 9.75, "width": 16.5, "title": "左"}, - "printElementType": {"type": "text"} - }, { - "options": {"left": 286.5, "top": 418.5, "height": 9.75, "width": 16.5, "title": "右"}, - "printElementType": {"type": "text"} - }, { - "options": {"left": 118.5, "top": 420, "height": 9.75, "width": 13.5, "title": "左"}, - "printElementType": {"type": "text"} - }, { - "options": {"left": 171, "top": 420, "height": 9.75, "width": 13.5, "title": "右"}, - "printElementType": {"type": "text"} + "left": 163.5, + "top": 435, + "height": 12, + "width": 7.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, "printElementType": {"type": "text"} }, { "options": { - "left": 225, - "top": 251, - "height": 15, - "width": 120, - "title": "加项信息", - "fontSize": 12, + "left": 342, + "top": 435, + "height": 9.75, + "width": 13.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 39, + "top": 435, + "height": 9.75, + "width": 82.5, + "title": "身高(cm)/体重(kg)", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 414, + "top": 435, + "height": 9.75, + "width": 55.5, + "title": "护士签字", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 453, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 163.5, + "top": 462, + "height": 13.5, + "width": 9, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 217.5, + "top": 463.5, + "height": 9.75, + "width": 70.5, + "title": "复测血压(mmHtg)", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 342, + "top": 463.5, + "height": 10.5, + "width": 13.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 39, + "top": 463.5, + "height": 9.75, + "width": 81, + "title": "血压(mmHg)", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 417, + "top": 463.5, + "height": 9.75, + "width": 52.5, + "title": "心率", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 483, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 220.5, + "top": 495, + "height": 9.75, + "width": 61.5, + "title": "矫正视力", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 168, + "top": 496.5, + "height": 9.75, + "width": 18, + "title": "左", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 306, + "top": 496.5, + "height": 9.75, + "width": 18, + "title": "右", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 129, + "top": 496.5, + "height": 9.75, + "width": 13.5, + "title": "右", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 357, + "top": 496.5, + "height": 9.75, + "width": 18, + "title": "左", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 39, + "top": 496.5, + "height": 9.75, + "width": 81, + "title": "裸视力", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": { + "left": 414, + "top": 496.5, + "height": 9.75, + "width": 55.5, + "title": "辨色力", + "textAlign": "center" + }, "printElementType": {"type": "text"} + }, { + "options": {"left": 36, "top": 513, "height": 9, "width": 517.5}, + "printElementType": {"type": "hline"} + }, { + "options": { + "left": 252, + "top": 520.5, + "height": 12, + "width": 64.5, + "title": "加项项目", + "fontSize": 10.5, "fontWeight": "bold", - "textAlign": "center", - "lineHeight": 12 + "textAlign": "center" }, "printElementType": {"type": "text"} }, { "options": { "left": 36, - "top": 275, + "top": 537, "height": 36, - "width": 550, + "width": 517.5, "textAlign": "center", "columns": [[{ "title": "加项项目", @@ -832,7 +936,7 @@ export default { "rowspan": 1, "checked": true }, { - "title": "窖人签字", + "title": "客人签字", "width": 84.61538461538461, "colspan": 1, "rowspan": 1, @@ -868,46 +972,32 @@ export default { "rowspan": 1, "checked": true }], [{ - "width": 101.97182944399705, + "width": 61.131620545033606, "colspan": 1, "rowspan": 1, "checked": true }, { - "width": 105.02057944399706, + "width": 135.14381190866996, "colspan": 1, "rowspan": 1, "checked": true }, { - "width": 47.942710706908, + "width": 59.35180280149982, "colspan": 1, "rowspan": 1, "checked": true }, { - "width": 117.95611265361862, + "width": 81.4179105422684, "colspan": 1, "rowspan": 1, "checked": true }, { - "width": 127.75088313609466, + "width": 125.21865935987084, "colspan": 1, "rowspan": 1, "checked": true - }, {"width": 49.35788461538462, "colspan": 1, "rowspan": 1, "checked": true}]] + }, {"width": 55.236194842657326, "colspan": 1, "rowspan": 1, "checked": true}]] }, "printElementType": {"title": "表格", "type": "table"} - }, { - "options": { - "left": 252, - "top": 522.5, - "height": 16.5, - "width": 315, - "title": "体检结束后,请您将此单交于前台,否则影响健检报告。", - "fontSize": 12, - "fontWeight": "bold", - "lineHeight": 12.75 - }, "printElementType": {"type": "text"} - }, { - "options": {"left": 12, "top": 786, "height": 49, "width": 49}, - "printElementType": {"title": "html", "type": "html"} }], "paperNumberLeft": 565.5, "paperNumberTop": 819 @@ -930,7 +1020,7 @@ export default { }, { "options": {"left": 99, "top": 7.5, "height": 40.5, "width": 16.5, "title": "扫码关注"}, "printElementType": {"type": "text"} - },/* { + },/!* { "options": { "left": 414, "top": 7.5, @@ -943,7 +1033,7 @@ export default { "textAlign": "center", "textType": "barcode" }, "printElementType": {"title": "自定义文本", "type": "text"} - },*/ { + },*!/ { "options": { "left": 414, "top": 7.5, @@ -1512,13 +1602,4453 @@ export default { "paperNumberTop": 819 } ] +}*/ + + +export default { + panels: [ + { + "index": 0, + "name": 1, + "paperType": "A4", + "height": 297, + "width": 210, + "paperHeader": 114, + "paperFooter": 780, + "printElements": [ + { + "options": { + "left": 403.5, + "top": 21, + "height": 34, + "width": 175, + "testData": "123123", + "field": "barcode", + "fontFamily": "微软雅黑", + "textAlign": "center", + "textType": "barcode" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 21, + "height": 43, + "width": 51, + "testData": "123123", + "field": "qrcode", + "textType": "qrcode", + "textAlign": "center" + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 91.5, + "top": 22.5, + "height": 40.5, + "width": 16.5, + "title": "扫码关注" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 174, + "top": 24, + "height": 27, + "width": 204, + "title": "体检中心 导检单", + "fontSize": 19, + "fontWeight": "600", + "textAlign": "center", + "lineHeight": 26, + "right": 378, + "bottom": 48.75, + "vCenter": 276, + "hCenter": 35.25 + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 159, + "top": 72, + "height": 9.75, + "width": 64.5, + "title": "性别", + "field": "gender", + "testData": "男" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 264, + "top": 72, + "height": 9.75, + "width": 70.5, + "title": "年龄", + "field": "age", + "testData": "20" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 49.5, + "top": 72, + "height": 9.75, + "width": 73.5, + "title": "姓名", + "field": "pname", + "testData": "张三" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 379.5, + "top": 72, + "height": 9.75, + "width": 120, + "title": "电话", + "field": "phone", + "testData": "15511063022" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 265.5, + "top": 90, + "height": 9.75, + "width": 120, + "title": "通讯地址", + "field": "address" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 49.5, + "top": 90, + "height": 9.75, + "width": 150, + "title": "体检编号", + "field": "medicalSn" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 40.5, + "top": 106.5, + "height": 9, + "width": 528, + "borderWidth": 0.75, + "right": 567.75, + "bottom": 106.5, + "vCenter": 303.75, + "hCenter": 102 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 100.5, + "top": 120, + "height": 324, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 100.5, + "top": 120, + "height": 27, + "width": 393, + "title": "餐前检查项日", + "textAlign": "center", + "right": 219.75, + "bottom": 129.75, + "vCenter": 159.75, + "hCenter": 124.875, + "lineHeight": 10.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 493.5, + "top": 120, + "height": 27, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 541.5000228881836, + "bottom": 129.75, + "vCenter": 517.5000228881836, + "hCenter": 124.875 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 120, + "height": 324, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 493.5, + "top": 120, + "height": 324, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 120, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 574.5, + "top": 120, + "height": 324, + "width": 9, + "right": 582.75, + "bottom": 441, + "vCenter": 578.25, + "hCenter": 279.75 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 120, + "height": 28.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 100.5, + "bottom": 147.74999713897705, + "vCenter": 68.25, + "hCenter": 133.49999713897705, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 171, + "top": 147, + "height": 57, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 147, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 158.25, + "vCenter": 305.25, + "hCenter": 153.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 174, + "top": 150, + "height": 51, + "width": 318, + "field": "mealFront", + "right": 504.75, + "bottom": 211.5, + "vCenter": 345.75, + "hCenter": 186 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 111, + "top": 171, + "height": 9.75, + "width": 48, + "title": "检查", + "textAlign": "center", + "right": 159, + "bottom": 180.75, + "vCenter": 135, + "hCenter": 175.875, + "coordinateSync": false, + "widthHeightSync": false, + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 204, + "height": 28.5, + "width": 394.5, + "title": "营养早餐", + "textAlign": "center", + "right": 495, + "bottom": 232.5000057220459, + "vCenter": 297.75, + "hCenter": 218.2500057220459, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 204, + "height": 28.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 103.5, + "bottom": 234.75, + "vCenter": 71.25, + "hCenter": 220.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 493.5, + "top": 204, + "height": 28.5, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 574.5000228881836, + "bottom": 231, + "vCenter": 534.0000228881836, + "hCenter": 217.5 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 204, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 171, + "top": 232.5, + "height": 39, + "width": 9, + "right": 85.5, + "bottom": 294, + "vCenter": 81, + "hCenter": 274.5 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 232.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 552, + "bottom": 232.5, + "vCenter": 293.25, + "hCenter": 228 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 175.5, + "top": 237, + "height": 27, + "width": 315, + "title": "【免费早餐】", + "right": 536.25, + "bottom": 594.75, + "vCenter": 378.75, + "hCenter": 581.25 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 111, + "top": 252, + "height": 9.75, + "width": 48, + "title": "餐厅", + "textAlign": "center", + "right": 194.25, + "bottom": 326.25, + "vCenter": 172.5, + "hCenter": 321.375 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 271.5, + "height": 28.5, + "width": 393, + "title": "餐后检查项目", + "textAlign": "center", + "right": 447.75, + "bottom": 299.9999942779541, + "vCenter": 274.5, + "hCenter": 285.7499942779541, + "lineHeight": 10.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 271.5, + "height": 28.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 101.49375915527344, + "bottom": 299.49375343322754, + "vCenter": 69.24375915527344, + "hCenter": 285.24375343322754, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 493.5, + "top": 271.5, + "height": 28.5, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 541.5000228881836, + "bottom": 129.75, + "vCenter": 517.5000228881836, + "hCenter": 124.875 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 271.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 284.25, + "vCenter": 305.25, + "hCenter": 279.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 171, + "top": 300, + "height": 60, + "width": 9, + "right": 92.25, + "bottom": 399, + "vCenter": 87.75, + "hCenter": 369 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 300, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 174, + "top": 304.5, + "height": 52.5, + "width": 316.5, + "field": "mealAfter", + "right": 493.5, + "bottom": 357.75, + "vCenter": 335.25, + "hCenter": 331.5 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 111, + "top": 325.5, + "height": 9.75, + "width": 52.5, + "title": "基础检查", + "textAlign": "center", + "right": 162.75, + "bottom": 335.25, + "vCenter": 136.5, + "hCenter": 330.375 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 360, + "height": 22.5, + "width": 393, + "title": "其他项目", + "textAlign": "center", + "right": 219.75, + "bottom": 369.7500114440918, + "vCenter": 159, + "hCenter": 364.8750114440918, + "lineHeight": 10.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 360, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 493.5, + "top": 360, + "height": 22.5, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 574.5000228881836, + "bottom": 389.25, + "vCenter": 534.0000228881836, + "hCenter": 375.75 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 360, + "height": 22.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 101.25, + "bottom": 389.25, + "vCenter": 69, + "hCenter": 375, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 171, + "top": 382.5, + "height": 61.5, + "width": 9, + "right": 180, + "bottom": 457.5, + "vCenter": 175.5, + "hCenter": 426.75 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 382.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 576, + "bottom": 390.75, + "vCenter": 306.75, + "hCenter": 386.25 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 174, + "top": 385.5, + "height": 54, + "width": 316.5, + "field": "mealOther", + "right": 501.75, + "bottom": 477.75, + "vCenter": 343.5, + "hCenter": 450.75 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 109.5, + "top": 409.5, + "height": 9.75, + "width": 52.5, + "title": "基础检查", + "textAlign": "center", + "right": 162.75, + "bottom": 335.25, + "vCenter": 136.5, + "hCenter": 330.375 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 444, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 455.25, + "vCenter": 305.25, + "hCenter": 450.75 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 36, + "top": 459, + "height": 13.5, + "width": 135, + "title": "以下内容由体检护士填写", + "fontSize": 10.5, + "fontWeight": "bold", + "right": 171.75, + "bottom": 471.75, + "vCenter": 104.25, + "hCenter": 465 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 124.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 300, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 211.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 403.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 484.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 574.5, + "top": 475.5, + "height": 87, + "width": 9, + "right": 562.5, + "bottom": 512.25, + "vCenter": 558, + "hCenter": 468.75 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 475.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 39, + "top": 484.5, + "height": 9.75, + "width": 82.5, + "title": "身高(cm)/体重(kg)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 342, + "top": 486, + "height": 9.75, + "width": 13.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 415.5, + "top": 486, + "height": 9.75, + "width": 55.5, + "title": "护士签字", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 163.5, + "top": 489, + "height": 12, + "width": 7.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 216, + "top": 490.5, + "height": 9.75, + "width": 78, + "title": "腰围(cm)臀围(cm)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 504, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 39, + "top": 516, + "height": 9.75, + "width": 81, + "title": "血压(mmHg)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 163.5, + "top": 517.5, + "height": 13.5, + "width": 9, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 217.5, + "top": 519, + "height": 9.75, + "width": 76.5, + "title": "复测血压(mmHtg)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 342, + "top": 519, + "height": 10.5, + "width": 13.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 417, + "top": 519, + "height": 9.75, + "width": 52.5, + "title": "心率", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 532.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 129, + "top": 544.5, + "height": 9.75, + "width": 13.5, + "title": "右", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 544.5, + "height": 9.75, + "width": 81, + "title": "裸视力", + "textAlign": "center", + "right": 111.75, + "bottom": 555, + "vCenter": 71.25, + "hCenter": 550.125 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 170.25, + "top": 545.25, + "height": 9.75, + "width": 18, + "title": "左", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 222, + "top": 546, + "height": 9.75, + "width": 61.5, + "title": "矫正视力", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 348, + "top": 546, + "height": 9.75, + "width": 18, + "title": "左", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 304.5, + "top": 546, + "height": 9.75, + "width": 18, + "title": "右", + "textAlign": "center", + "right": 329.25, + "bottom": 555.75, + "vCenter": 320.25, + "hCenter": 550.875 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 415.5, + "top": 546, + "height": 9.75, + "width": 55.5, + "title": "辨色力", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 562.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 128.25, + "bottom": 573, + "vCenter": 83.25, + "hCenter": 568.5 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 256.5, + "top": 573, + "height": 12, + "width": 84, + "title": "加项信息", + "fontSize": 10.5, + "fontWeight": "bold", + "textAlign": "center", + "right": 321.0000228881836, + "bottom": 585, + "vCenter": 288.7500228881836, + "hCenter": 579 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 298.5, + "top": 594, + "height": 69, + "width": 9, + "right": 309, + "bottom": 674.2500228881836, + "vCenter": 304.5, + "hCenter": 639.7500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 237, + "top": 594, + "height": 69, + "width": 9, + "right": 45, + "bottom": 691.5000343322754, + "vCenter": 40.5, + "hCenter": 646.5000343322754 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 384, + "top": 594, + "height": 69, + "width": 9, + "right": 372.7500228881836, + "bottom": 667.5000228881836, + "vCenter": 368.2500228881836, + "hCenter": 633.0000228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 99, + "top": 594, + "height": 69, + "width": 9, + "right": 108, + "bottom": 663.7500228881836, + "vCenter": 103.5, + "hCenter": 629.2500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 514.5, + "top": 594, + "height": 69, + "width": 9, + "right": 416.2500228881836, + "bottom": 734.2500228881836, + "vCenter": 411.7500228881836, + "hCenter": 699.7500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 594, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 605.25, + "vCenter": 305.25, + "hCenter": 600.75 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 574.5, + "top": 594, + "height": 69, + "width": 9, + "right": 579, + "bottom": 677.2500228881836, + "vCenter": 574.5, + "hCenter": 642.7500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 594, + "height": 69, + "width": 9, + "right": 45, + "bottom": 691.5000343322754, + "vCenter": 40.5, + "hCenter": 646.5000343322754 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 247.5, + "top": 600, + "height": 12, + "width": 42, + "title": "客人签字", + "right": 291.7500228881836, + "bottom": 612.0000228881836, + "vCenter": 270.7500228881836, + "hCenter": 606.0000228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 145.5, + "top": 600, + "height": 12, + "width": 42, + "title": "检查结果", + "right": 186.75, + "bottom": 609.7500228881836, + "vCenter": 165.75, + "hCenter": 603.7500228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 319.5, + "top": 600, + "height": 12, + "width": 42, + "title": "加项项目", + "right": 87, + "bottom": 611.2500228881836, + "vCenter": 66, + "hCenter": 606.3750228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 45, + "top": 600, + "height": 12, + "width": 42, + "title": "加项项目", + "right": 87, + "bottom": 611.2500228881836, + "vCenter": 66, + "hCenter": 606.3750228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 426, + "top": 600, + "height": 12, + "width": 42, + "title": "检查结果", + "right": 474.0000228881836, + "bottom": 612, + "vCenter": 453.0000228881836, + "hCenter": 606, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 525, + "top": 600, + "height": 12, + "width": 42, + "title": "客人签字", + "right": 569.2500228881836, + "bottom": 612.7500228881836, + "vCenter": 548.2500228881836, + "hCenter": 606.7500228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 616.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 129, + "bottom": 714.75, + "vCenter": 84, + "hCenter": 710.25 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 639, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 577.5, + "bottom": 730.5, + "vCenter": 308.25, + "hCenter": 726 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 36, + "top": 663, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 577.5, + "bottom": 750, + "vCenter": 308.25, + "hCenter": 745.5 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 340, + "top": 751.5, + "height": 15, + "width": 250, + "title": "体检结束后,请您将此单交于前台,否则影响健检报告。", + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "fontWeight": "bold", + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0, + "right": 575.25, + "bottom": 766.5, + "vCenter": 459.75, + "hCenter": 759 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + } + ], + "paperNumberLeft": 565.5, + "paperNumberTop": 819, + "paperNumberDisabled": true, + "paperNumberContinue": true, + "watermarkOptions": {}, + "panelLayoutOptions": {} + }, + { + "index": 1, + "name": 2, + "height": 297, + "width": 210, + "paperHeader": 105, + "paperFooter": 780, + "printElements": [ + { + "options": { + "left": 49.5, + "top": 12, + "height": 43, + "width": 51, + "testData": "123123", + "field": "qrcode", + "textType": "qrcode" + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 13.5, + "height": 40.5, + "width": 16.5, + "title": "扫码关注" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 410, + "top": 13.5, + "height": 34, + "width": 175, + "testData": "123123", + "field": "barcode", + "fontFamily": "微软雅黑", + "textAlign": "center", + "textType": "barcode" + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 174, + "top": 15, + "height": 27, + "width": 204, + "title": "体检中心 导检单", + "fontSize": 19, + "fontWeight": "600", + "textAlign": "center", + "lineHeight": 26 + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 264, + "top": 67.5, + "height": 9.75, + "width": 70.5, + "title": "年龄", + "field": "age", + "testData": "20" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 159, + "top": 67.5, + "height": 9.75, + "width": 64.5, + "title": "性别", + "field": "gender", + "testData": "男" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 49.5, + "top": 67.5, + "height": 9.75, + "width": 73.5, + "title": "姓名", + "field": "pname", + "testData": "张三" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 379.5, + "top": 67.5, + "height": 9.75, + "width": 120, + "title": "电话", + "field": "phone", + "testData": "15511063022" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 265.5, + "top": 84, + "height": 9.75, + "width": 120, + "title": "通讯地址", + "field": "address" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 49.5, + "top": 84, + "height": 9.75, + "width": 193.5, + "title": "体检编号", + "field": "medicalSn" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 43.5, + "top": 100.5, + "height": 9, + "width": 528, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 331.5, + "top": 114, + "height": 9.75, + "width": 60, + "title": "腰围", + "field": "waistline" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 454.5, + "top": 114, + "height": 9.75, + "width": 67.5, + "title": "臀围", + "field": "Hips" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 531, + "top": 114, + "height": 9.75, + "width": 16.5, + "title": "CM" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 400.5, + "top": 114, + "height": 9.75, + "width": 16.5, + "title": "CM" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 264, + "top": 115.5, + "height": 9.75, + "width": 27, + "title": "KG" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 193.5, + "top": 115.5, + "height": 9.75, + "width": 64.5, + "title": "体重", + "field": "weight" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 127.5, + "top": 115.5, + "height": 9.75, + "width": 16.5, + "title": "CM" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 51, + "top": 115.5, + "height": 9.75, + "width": 75, + "title": "身高", + "field": "height" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 351, + "top": 123, + "height": 9, + "width": 49.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 478.5, + "top": 123, + "height": 9, + "width": 52.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 216, + "top": 124.5, + "height": 9, + "width": 46.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 73.5, + "top": 124.5, + "height": 9, + "width": 51, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 193.5, + "top": 138, + "height": 9.75, + "width": 69, + "title": "心率", + "field": "heartRate" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 265.5, + "top": 138, + "height": 9.75, + "width": 25.5, + "title": "次/分" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 129, + "top": 139.5, + "height": 9.75, + "width": 33, + "title": "mmHg" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 51, + "top": 139.5, + "height": 9.75, + "width": 75, + "title": "血压", + "field": "bloodPressure" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 216, + "top": 147, + "height": 9, + "width": 48, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 75, + "top": 148.5, + "height": 9, + "width": 51, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 90, + "top": 159, + "height": 43.5, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 451.5, + "top": 159, + "height": 43.5, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 523.5, + "top": 159, + "height": 43.5, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 37.5, + "top": 159, + "height": 43.5, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 579, + "top": 159, + "height": 43.5, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 37.5, + "top": 159, + "height": 9, + "width": 541.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 160.5, + "top": 166.5, + "height": 9.75, + "width": 19.5, + "title": "左:" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 103.5, + "top": 166.5, + "height": 9.75, + "width": 42, + "title": "裸视" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 286.5, + "top": 168, + "height": 9.75, + "width": 22.5, + "title": "右:" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 543, + "top": 172.5, + "height": 9.75, + "width": 24, + "title": "正常色弱" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 174, + "top": 175.5, + "height": 9, + "width": 90, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 307.5, + "top": 175.5, + "height": 9, + "width": 90, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 462, + "top": 175.5, + "height": 9.75, + "width": 33, + "title": "辩色" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 43.5, + "top": 175.5, + "height": 9.75, + "width": 34.5, + "title": "视力", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 90, + "top": 180, + "height": 9, + "width": 361.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 160.5, + "top": 186, + "height": 9.75, + "width": 19.5, + "title": "左:" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 103.5, + "top": 186, + "height": 9.75, + "width": 43.5, + "title": "纠正视力" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 286.5, + "top": 187.5, + "height": 9.75, + "width": 22.5, + "title": "右:" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 177, + "top": 195, + "height": 9, + "width": 90, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 309, + "top": 196.5, + "height": 9, + "width": 90, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 202.5, + "height": 9, + "width": 541.5, + "borderWidth": 0.75, + "right": 579, + "bottom": 212.25, + "vCenter": 308.25, + "hCenter": 207.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 222, + "height": 36, + "width": 541.5, + "field": "table", + "textAlign": "center", + "right": 589, + "bottom": 257.25, + "vCenter": 314, + "hCenter": 239.25, + "columns": [ + [ + { + "width": 117.9077456208086, + "title": "检查项目", + "field": "itemName", + "checked": true, + "columnId": "itemName", + "fixed": false, + "rowspan": 2, + "colspan": 1 + }, + { + "width": 77.05224321701643, + "title": "医生签名/放弃签名", + "checked": true, + "fixed": false, + "rowspan": 2, + "colspan": 1 + }, + { + "width": 212.88217618151953, + "title": "温馨提示及结果", + "checked": true, + "fixed": false, + "rowspan": 2, + "colspan": 1 + }, + { + "width": 100, + "title": "满意度调查", + "checked": true, + "fixed": false, + "rowspan": 1, + "colspan": 3 + } + ], + [ + { + "width": 49.01102977624462, + "title": "满意", + "checked": true, + "fixed": false, + "rowspan": 1, + "colspan": 1 + }, + { + "width": 45.43616539671854, + "title": "一般", + "checked": true, + "fixed": false, + "rowspan": 1, + "colspan": 1 + }, + { + "width": 39.21063980769227, + "title": "不满意", + "checked": true, + "fixed": false, + "rowspan": 1, + "colspan": 1 + } + ] + ] + }, + "printElementType": { + "title": "表格", + "type": "table", + "editable": true, + "columnDisplayEditable": true, + "columnDisplayIndexEditable": true, + "columnTitleEditable": true, + "columnResizable": true, + "columnAlignEditable": true, + "isEnableEditField": true, + "isEnableContextMenu": true, + "isEnableInsertRow": true, + "isEnableDeleteRow": true, + "isEnableInsertColumn": true, + "isEnableDeleteColumn": true, + "isEnableMergeCell": true + } + }, + { + "options": { + "left": 37.5, + "top": 279, + "height": 15, + "width": 60, + "title": "加项检查:", + "right": 97.5, + "bottom": 288.75, + "vCenter": 67.5, + "hCenter": 283.875, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 10.5, + "fontWeight": "bold", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 133.5, + "top": 297, + "height": 69, + "width": 9, + "right": 106.5, + "bottom": 399.75, + "vCenter": 102, + "hCenter": 354.75 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 237, + "top": 297, + "height": 69, + "width": 9, + "right": 48, + "bottom": 394.5, + "vCenter": 43.5, + "hCenter": 349.5 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 352.5, + "top": 297, + "height": 69, + "width": 9, + "right": 341.25, + "bottom": 363, + "vCenter": 336.75, + "hCenter": 332.25 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 472.5, + "top": 297, + "height": 69, + "width": 9, + "right": 481.5, + "bottom": 363, + "vCenter": 477, + "hCenter": 332.25 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 37.5, + "top": 297, + "height": 69, + "width": 9, + "right": 48, + "bottom": 394.5, + "vCenter": 43.5, + "hCenter": 349.5 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 579, + "top": 297, + "height": 69, + "width": 9, + "right": 554.25, + "bottom": 405, + "vCenter": 549.75, + "hCenter": 360 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 37.5, + "top": 297, + "height": 9, + "width": 541.5, + "borderWidth": 0.75, + "right": 126.75, + "bottom": 324, + "vCenter": 81.75, + "hCenter": 319.5 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 319.5, + "height": 9, + "width": 541.5, + "borderWidth": 0.75, + "right": 579.75, + "bottom": 328.5, + "vCenter": 309, + "hCenter": 324 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 342, + "height": 9, + "width": 541.5, + "borderWidth": 0.75, + "right": 608.25, + "bottom": 343.5, + "vCenter": 337.5, + "hCenter": 339 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 366, + "height": 9, + "width": 541.5, + "borderWidth": 0.75, + "right": 126.75, + "bottom": 324, + "vCenter": 81.75, + "hCenter": 319.5 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 228, + "top": 376.5, + "height": 19.5, + "width": 120, + "title": "体检知情通知书", + "fontSize": 12, + "textAlign": "center", + "lineHeight": 18 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 37.5, + "top": 405, + "height": 12, + "width": 550, + "title": "(1)孕期、哺乳期女士或准备生育的男士、女士请不要做X光检查。" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 37.5, + "top": 423, + "height": 10.5, + "width": 550, + "title": "(2)无性行为、孕期、经期的女性请不要做妇科检查及阴式超声。" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 37.5, + "top": 438, + "height": 22.5, + "width": 550, + "title": "(3)根据卫生部通知要求,已取消健康体检套餐中乙肝检测项目,如果需要可由本人自选为加项,如单位统一选择该项检测,体检者个人可选择放弃。" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 37.5, + "top": 463.5, + "height": 24, + "width": 550, + "title": "(4)仔细阅读以下报告获取方式,建议您选择亲自到体检中心领取,如选择单位代领、委托别人代领、快递、电子邮件等其他方式,将有可能造成您个人体检信息泄露,我中心不承担因此造成的一切损失。" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 37.5, + "top": 490.5, + "height": 12, + "width": 550, + "title": "(5)出具体检报告日期:普通体检7个工作日内;贵宾体检10个工作日内,敬请留意短信提示" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 37.5, + "top": 508.5, + "height": 21, + "width": 550, + "title": "(6)身份证号码是体检检查在本机构唯一识别码,可依据此作为体检资料保存、查询及历年体检数据对比的可靠代码。本人在了解此告知后,未提供身份证号码,为放弃上述服务的表示。" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 138, + "top": 537, + "height": 15, + "width": 342, + "title": "以上告知内容本人已充分了解,所选体检项目本人均同意。", + "fontSize": 12, + "fontWeight": "bold", + "lineHeight": 15 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 385.5, + "top": 564, + "height": 15, + "width": 58.5, + "title": "确定签名:", + "fontSize": 10.5, + "lineHeight": 10.5 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 435, + "top": 576, + "height": 9, + "width": 90, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 168, + "top": 583.5, + "height": 15, + "width": 226.5, + "title": "体检报告获取方式(仅限于个检)", + "fontSize": 15, + "fontWeight": "bold", + "lineHeight": 15, + "pageBreak": true + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 37.5, + "top": 613.5, + "height": 9.75, + "width": 69, + "title": "尊敬的客人:" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 58.5, + "top": 630, + "height": 13.5, + "width": 424.5, + "title": "感谢您惠顾健康体检中心。对于您体检报告的获取,我们有以下方式供您选择:" + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 402, + "top": 650, + "height": 12, + "width": 12 + }, + "printElementType": { + "type": "rect" + } + }, + { + "options": { + "left": 234, + "top": 650, + "height": 12, + "width": 12 + }, + "printElementType": { + "type": "rect" + } + }, + { + "options": { + "left": 426, + "top": 650, + "height": 9.75, + "width": 120, + "title": "特快专递送达" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 58.5, + "top": 650, + "height": 12, + "width": 12 + }, + "printElementType": { + "title": "矩形", + "type": "rect" + } + }, + { + "options": { + "left": 78, + "top": 651, + "height": 9.75, + "width": 120, + "title": "E-mail邮件发送" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 250.5, + "top": 651, + "height": 9.75, + "width": 120, + "title": "销售经理转送" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 58.5, + "top": 670, + "height": 12, + "width": 12 + }, + "printElementType": { + "type": "rect" + } + }, + { + "options": { + "left": 78, + "top": 671, + "height": 9.75, + "width": 120, + "title": "到体检中心自取" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 58.5, + "top": 690, + "height": 9.75, + "width": 120, + "title": "以上方式只可选择一种。" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 78, + "top": 707, + "height": 9.75, + "width": 159, + "title": "请您在选择获取方式左侧的中划”√”" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 492, + "top": 727, + "height": 9.75, + "width": 40.5, + "title": "健康体检" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 513, + "top": 752, + "height": 9.75, + "width": 13.5, + "title": "月" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 483, + "top": 752, + "height": 9.75, + "width": 13.5, + "title": "年" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 541.5, + "top": 752, + "height": 9.75, + "width": 12, + "title": "日" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 12, + "top": 786, + "height": 49, + "width": 49 + }, + "printElementType": { + "title": "html", + "type": "html" + } + } + ], + "paperNumberLeft": 565.5, + "paperNumberTop": 819, + "paperNumberDisabled": true, + "paperNumberContinue": true, + "watermarkOptions": {}, + "panelLayoutOptions": {} + } + ] } - - - - +/* + { + "index": 0, + "name": 1, + "paperType": "A4", + "height": 297, + "width": 210, + "paperHeader": 63, + "paperFooter": 780, + "printElements": [ + { + "options": { + "left": 49.5, + "top": 12, + "height": 43, + "width": 51, + "testData": "123123", + "field": "qrcode", + "textType": "qrcode", + "textAlign": "center", + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 13.5, + "height": 40.5, + "width": 16.5, + "title": "扫码关注" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 414, + "top": 13.5, + "height": 34, + "width": 175, + "testData": "123123", + "field": "barcode", + "fontFamily": "微软雅黑", + "textAlign": "center", + "textType": "barcode" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 174, + "top": 15, + "height": 27, + "width": 204, + "title": "体检中心 导检单", + "fontSize": 19, + "fontWeight": "600", + "textAlign": "center", + "lineHeight": 26 + }, + "printElementType": { + "title": "自定义文本", + "type": "text" + } + }, + { + "options": { + "left": 159, + "top": 72, + "height": 9.75, + "width": 64.5, + "title": "性别", + "field": "gender", + "testData": "男" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 264, + "top": 72, + "height": 9.75, + "width": 70.5, + "title": "年龄", + "field": "age", + "testData": "20" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 49.5, + "top": 72, + "height": 9.75, + "width": 73.5, + "title": "姓名", + "field": "pname", + "testData": "张三" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 379.5, + "top": 72, + "height": 9.75, + "width": 120, + "title": "电话", + "field": "phone", + "testData": "15511063022" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 265.5, + "top": 90, + "height": 9.75, + "width": 120, + "title": "通讯地址", + "field": "address" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 49.5, + "top": 90, + "height": 9.75, + "width": 150, + "title": "体检编号", + "field": "medicalSn" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 40.5, + "top": 106.5, + "height": 9, + "width": 528, + "borderWidth": 0.75, + "right": 567.75, + "bottom": 106.5, + "vCenter": 303.75, + "hCenter": 102 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 100.5, + "top": 120, + "height": 324, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 100.5, + "top": 120, + "height": 27, + "width": 393, + "title": "餐前检查项日", + "textAlign": "center", + "right": 219.75, + "bottom": 129.75, + "vCenter": 159.75, + "hCenter": 124.875, + "lineHeight": 10.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 493.5, + "top": 120, + "height": 27, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 541.5000228881836, + "bottom": 129.75, + "vCenter": 517.5000228881836, + "hCenter": 124.875 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 120, + "height": 324, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 493.5, + "top": 120, + "height": 324, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 120, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 574.5, + "top": 120, + "height": 324, + "width": 9, + "right": 582.75, + "bottom": 441, + "vCenter": 578.25, + "hCenter": 279.75 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 120, + "height": 28.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 100.5, + "bottom": 147.74999713897705, + "vCenter": 68.25, + "hCenter": 133.49999713897705, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 171, + "top": 147, + "height": 57, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 147, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 158.25, + "vCenter": 305.25, + "hCenter": 153.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 174, + "top": 150, + "height": 51, + "width": 318, + "field": "mealFront", + "right": 504.75, + "bottom": 211.5, + "vCenter": 345.75, + "hCenter": 186 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 111, + "top": 171, + "height": 9.75, + "width": 48, + "title": "检查", + "textAlign": "center", + "right": 159, + "bottom": 180.75, + "vCenter": 135, + "hCenter": 175.875, + "coordinateSync": false, + "widthHeightSync": false, + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 204, + "height": 28.5, + "width": 394.5, + "title": "营养早餐", + "textAlign": "center", + "right": 495, + "bottom": 232.5000057220459, + "vCenter": 297.75, + "hCenter": 218.2500057220459, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 204, + "height": 28.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 103.5, + "bottom": 234.75, + "vCenter": 71.25, + "hCenter": 220.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 493.5, + "top": 204, + "height": 28.5, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 574.5000228881836, + "bottom": 231, + "vCenter": 534.0000228881836, + "hCenter": 217.5 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 204, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 171, + "top": 232.5, + "height": 39, + "width": 9, + "right": 85.5, + "bottom": 294, + "vCenter": 81, + "hCenter": 274.5 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 232.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 552, + "bottom": 232.5, + "vCenter": 293.25, + "hCenter": 228 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 175.5, + "top": 237, + "height": 27, + "width": 315, + "title": "【免费早餐】", + "right": 536.25, + "bottom": 594.75, + "vCenter": 378.75, + "hCenter": 581.25 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 111, + "top": 252, + "height": 9.75, + "width": 48, + "title": "餐厅", + "textAlign": "center", + "right": 194.25, + "bottom": 326.25, + "vCenter": 172.5, + "hCenter": 321.375 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 271.5, + "height": 28.5, + "width": 393, + "title": "餐后检查项目", + "textAlign": "center", + "right": 447.75, + "bottom": 299.9999942779541, + "vCenter": 274.5, + "hCenter": 285.7499942779541, + "lineHeight": 10.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 271.5, + "height": 28.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 101.49375915527344, + "bottom": 299.49375343322754, + "vCenter": 69.24375915527344, + "hCenter": 285.24375343322754, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 493.5, + "top": 271.5, + "height": 28.5, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 541.5000228881836, + "bottom": 129.75, + "vCenter": 517.5000228881836, + "hCenter": 124.875 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 271.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 284.25, + "vCenter": 305.25, + "hCenter": 279.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 171, + "top": 300, + "height": 60, + "width": 9, + "right": 92.25, + "bottom": 399, + "vCenter": 87.75, + "hCenter": 369 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 300, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 174, + "top": 304.5, + "height": 52.5, + "width": 316.5, + "field": "mealAfter", + "right": 493.5, + "bottom": 357.75, + "vCenter": 335.25, + "hCenter": 331.5 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 111, + "top": 325.5, + "height": 9.75, + "width": 52.5, + "title": "基础检查", + "textAlign": "center", + "right": 162.75, + "bottom": 335.25, + "vCenter": 136.5, + "hCenter": 330.375 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 100.5, + "top": 360, + "height": 22.5, + "width": 393, + "title": "其他项目", + "textAlign": "center", + "right": 219.75, + "bottom": 369.7500114440918, + "vCenter": 159, + "hCenter": 364.8750114440918, + "lineHeight": 10.5, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 360, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 493.5, + "top": 360, + "height": 22.5, + "width": 81, + "title": "放弃签名", + "textAlign": "center", + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid", + "qrCodeLevel": 0, + "right": 574.5000228881836, + "bottom": 389.25, + "vCenter": 534.0000228881836, + "hCenter": 375.75 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 360, + "height": 22.5, + "width": 64.5, + "title": "医生签名", + "textAlign": "center", + "right": 101.25, + "bottom": 389.25, + "vCenter": 69, + "hCenter": 375, + "coordinateSync": false, + "widthHeightSync": false, + "backgroundColor": "#ccc0c0", + "qrCodeLevel": 0, + "textContentVerticalAlign": "middle", + "borderLeft": "solid", + "borderTop": "solid" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 382.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 576, + "bottom": 390.75, + "vCenter": 306.75, + "hCenter": 386.25 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 171, + "top": 382.5, + "height": 61.5, + "width": 9, + "right": 180, + "bottom": 457.5, + "vCenter": 175.5, + "hCenter": 426.75 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 174, + "top": 385.5, + "height": 54, + "width": 316.5, + "field": "mealOther", + "right": 501.75, + "bottom": 477.75, + "vCenter": 343.5, + "hCenter": 450.75 + }, + "printElementType": { + "type": "longText" + } + }, + { + "options": { + "left": 109.5, + "top": 409.5, + "height": 9.75, + "width": 52.5, + "title": "基础检查", + "textAlign": "center", + "right": 162.75, + "bottom": 335.25, + "vCenter": 136.5, + "hCenter": 330.375 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 444, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 455.25, + "vCenter": 305.25, + "hCenter": 450.75 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 36, + "top": 459, + "height": 13.5, + "width": 135, + "title": "以下内容由体检护士填写", + "fontSize": 10.5, + "fontWeight": "bold", + "right": 171.75, + "bottom": 471.75, + "vCenter": 104.25, + "hCenter": 465 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 124.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 300, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 211.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 403.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 484.5, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 475.5, + "height": 87, + "width": 9 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 574.5, + "top": 475.5, + "height": 87, + "width": 9, + "right": 562.5, + "bottom": 512.25, + "vCenter": 558, + "hCenter": 468.75 + }, + "printElementType": { + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 475.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 39, + "top": 484.5, + "height": 9.75, + "width": 82.5, + "title": "身高(cm)/体重(kg)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 342, + "top": 486, + "height": 9.75, + "width": 13.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 415.5, + "top": 486, + "height": 9.75, + "width": 55.5, + "title": "护士签字", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 163.5, + "top": 489, + "height": 12, + "width": 7.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 216, + "top": 490.5, + "height": 9.75, + "width": 78, + "title": "腰围(cm)臀围(cm)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 504, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 39, + "top": 516, + "height": 9.75, + "width": 81, + "title": "血压(mmHg)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 163.5, + "top": 517.5, + "height": 13.5, + "width": 9, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 217.5, + "top": 519, + "height": 9.75, + "width": 76.5, + "title": "复测血压(mmHtg)", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 342, + "top": 519, + "height": 10.5, + "width": 13.5, + "title": "/", + "fontSize": 10.5, + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 417, + "top": 519, + "height": 9.75, + "width": 52.5, + "title": "心率", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 532.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75 + }, + "printElementType": { + "type": "hline" + } + }, + { + "options": { + "left": 129, + "top": 544.5, + "height": 9.75, + "width": 13.5, + "title": "右", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 544.5, + "height": 9.75, + "width": 81, + "title": "裸视力", + "textAlign": "center", + "right": 111.75, + "bottom": 555, + "vCenter": 71.25, + "hCenter": 550.125 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 170.25, + "top": 545.25, + "height": 9.75, + "width": 18, + "title": "左", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 222, + "top": 546, + "height": 9.75, + "width": 61.5, + "title": "矫正视力", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 348, + "top": 546, + "height": 9.75, + "width": 18, + "title": "左", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 304.5, + "top": 546, + "height": 9.75, + "width": 18, + "title": "右", + "textAlign": "center", + "right": 329.25, + "bottom": 555.75, + "vCenter": 320.25, + "hCenter": 550.875 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 415.5, + "top": 546, + "height": 9.75, + "width": 55.5, + "title": "辨色力", + "textAlign": "center" + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 562.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 128.25, + "bottom": 573, + "vCenter": 83.25, + "hCenter": 568.5 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 256.5, + "top": 573, + "height": 12, + "width": 84, + "title": "加项信息", + "fontSize": 10.5, + "fontWeight": "bold", + "textAlign": "center", + "right": 321.0000228881836, + "bottom": 585, + "vCenter": 288.7500228881836, + "hCenter": 579 + }, + "printElementType": { + "type": "text" + } + }, + { + "options": { + "left": 237, + "top": 594, + "height": 69, + "width": 9, + "right": 45, + "bottom": 691.5000343322754, + "vCenter": 40.5, + "hCenter": 646.5000343322754 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 298.5, + "top": 594, + "height": 69, + "width": 9, + "right": 309, + "bottom": 674.2500228881836, + "vCenter": 304.5, + "hCenter": 639.7500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 384, + "top": 594, + "height": 69, + "width": 9, + "right": 372.7500228881836, + "bottom": 667.5000228881836, + "vCenter": 368.2500228881836, + "hCenter": 633.0000228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 99, + "top": 594, + "height": 69, + "width": 9, + "right": 108, + "bottom": 663.7500228881836, + "vCenter": 103.5, + "hCenter": 629.2500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 514.5, + "top": 594, + "height": 69, + "width": 9, + "right": 416.2500228881836, + "bottom": 734.2500228881836, + "vCenter": 411.7500228881836, + "hCenter": 699.7500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 594, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 574.5, + "bottom": 605.25, + "vCenter": 305.25, + "hCenter": 600.75 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 574.5, + "top": 594, + "height": 69, + "width": 9, + "right": 579, + "bottom": 677.2500228881836, + "vCenter": 574.5, + "hCenter": 642.7500228881836 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 36, + "top": 594, + "height": 69, + "width": 9, + "right": 45, + "bottom": 691.5000343322754, + "vCenter": 40.5, + "hCenter": 646.5000343322754 + }, + "printElementType": { + "title": "竖线", + "type": "vline" + } + }, + { + "options": { + "left": 247.5, + "top": 600, + "height": 12, + "width": 42, + "title": "客人签字", + "right": 291.7500228881836, + "bottom": 612.0000228881836, + "vCenter": 270.7500228881836, + "hCenter": 606.0000228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 145.5, + "top": 600, + "height": 12, + "width": 42, + "title": "检查结果", + "right": 186.75, + "bottom": 609.7500228881836, + "vCenter": 165.75, + "hCenter": 603.7500228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 45, + "top": 600, + "height": 12, + "width": 42, + "title": "加项项目", + "right": 87, + "bottom": 611.2500228881836, + "vCenter": 66, + "hCenter": 606.3750228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 319.5, + "top": 600, + "height": 12, + "width": 42, + "title": "加项项目", + "right": 87, + "bottom": 611.2500228881836, + "vCenter": 66, + "hCenter": 606.3750228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 426, + "top": 600, + "height": 12, + "width": 42, + "title": "检查结果", + "right": 474.0000228881836, + "bottom": 612, + "vCenter": 453.0000228881836, + "hCenter": 606, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 525, + "top": 600, + "height": 12, + "width": 42, + "title": "客人签字", + "right": 569.2500228881836, + "bottom": 612.7500228881836, + "vCenter": 548.2500228881836, + "hCenter": 606.7500228881836, + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + }, + { + "options": { + "left": 36, + "top": 616.5, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 129, + "bottom": 714.75, + "vCenter": 84, + "hCenter": 710.25 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 37.5, + "top": 639, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 577.5, + "bottom": 730.5, + "vCenter": 308.25, + "hCenter": 726 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 36, + "top": 663, + "height": 9, + "width": 538.5, + "borderWidth": 0.75, + "right": 577.5, + "bottom": 750, + "vCenter": 308.25, + "hCenter": 745.5 + }, + "printElementType": { + "title": "横线", + "type": "hline" + } + }, + { + "options": { + "left": 343.5, + "top": 751.5, + "height": 15, + "width": 231, + "title": "体检结束后,请您将此单交于前台,否则影响健检报告。", + "coordinateSync": false, + "widthHeightSync": false, + "fontSize": 9.75, + "fontWeight": "bold", + "textAlign": "center", + "textContentVerticalAlign": "middle", + "qrCodeLevel": 0, + "right": 575.25, + "bottom": 766.5, + "vCenter": 459.75, + "hCenter": 759 + }, + "printElementType": { + "title": "文本", + "type": "text" + } + } + ], + "paperNumberLeft": 565.5, + "paperNumberTop": 819, + "paperNumberDisabled": true, + "paperNumberContinue": true, + "watermarkOptions": {}, + "panelLayoutOptions": {} + }, +*/