|
@@ -0,0 +1,238 @@
|
|
|
+<template>
|
|
|
+ <div class="containerPinter">
|
|
|
+ <webview style="height: 100%;" id="printWebview" ref="printWebview" :src="fullPath" nodeintegration
|
|
|
+ webpreferences="contextIsolation=no" />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+// import config from "@/utils/config";
|
|
|
+let fullPath = '', ipc;
|
|
|
+// if (config.type != "loc") {
|
|
|
+// const { ipcRenderer } = require("electron");
|
|
|
+// ipc = ipcRenderer;
|
|
|
+// fullPath = './index.html';
|
|
|
+// // fullPath = path.join(__static, 'print.html');
|
|
|
+// } else {
|
|
|
+// fullPath = "./index.html";
|
|
|
+// }
|
|
|
+import { timeTrans } from '@/utils/common'
|
|
|
+import { ipcRenderer } from 'electron'
|
|
|
+ipc = ipcRenderer;
|
|
|
+fullPath = "./pm.html";
|
|
|
+export default {
|
|
|
+ name: 'Pinter',
|
|
|
+ props: {
|
|
|
+ printerObj: {
|
|
|
+ type: Object,
|
|
|
+ default() {
|
|
|
+ return {}
|
|
|
+ }
|
|
|
+ },
|
|
|
+ printerData: {
|
|
|
+ type: Object,
|
|
|
+ default() {
|
|
|
+ return {}
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ fullPath: fullPath,
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ printerObj(newValue, oldValue) {
|
|
|
+ this.sethtml(this.printerData)
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ let t = this
|
|
|
+ const webview = this.$refs.printWebview;
|
|
|
+ // webview.addEventListener('console-message', e => {
|
|
|
+ //可以打印出webview中所需要打印的内容
|
|
|
+ // console.log('webview: ' + JSON.stringify(e.message));
|
|
|
+ // });
|
|
|
+ webview.addEventListener('ipc-message', (event) => {
|
|
|
+ console.log(event)
|
|
|
+ if (event.channel === 'webview-print-do') {
|
|
|
+ webview.print({
|
|
|
+ silent: true,
|
|
|
+ printBackground: true,
|
|
|
+ deviceName: t.printerObj.displayName
|
|
|
+ }).then((res,r) => {
|
|
|
+ console.log(res,r)
|
|
|
+ }).catch((err) => {
|
|
|
+ console.log(err)
|
|
|
+ }).finally(() => {
|
|
|
+ t.$notify({
|
|
|
+ title: '打印完成',
|
|
|
+ message: '请取走你的小票',
|
|
|
+ type: 'success',
|
|
|
+ offset: 80,
|
|
|
+ });
|
|
|
+ this.$emit('loadingclick')
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ sethtml(obj) {
|
|
|
+ let codemsg = {
|
|
|
+ 0: '您近期需要随访',
|
|
|
+ 1: '您近期需要随访,系统中未登记',
|
|
|
+ 2: '已完成随访,下次随访时间',
|
|
|
+ 3: '您近期需要随访,电子健康档案未建档',
|
|
|
+ 4: '已完成随访,下次随访时间,电子健康档案未建档',
|
|
|
+ 5: '系统中未登记,电子健康档案未建档',
|
|
|
+ 6: '已完成随访,系统中未登记,下次随访时间',
|
|
|
+ 7: '您在电子健康档案中不是两慢病',
|
|
|
+ 8: '您在本系统中不是两慢病',
|
|
|
+ 9: '查询出错'
|
|
|
+ }
|
|
|
+ let d = obj.patientvisit.msg.split('[')
|
|
|
+ ? obj.patientvisit.msg.split('[')[1]
|
|
|
+ : ''
|
|
|
+ d = d && d.split(']') ? d.split(']')[0] : ''
|
|
|
+ let time = d || ''
|
|
|
+ console.log(obj)
|
|
|
+ let html = `<div style="box-sizing: border-box;padding-top:40px;">
|
|
|
+ <div class="text-center font-bold" style="font-size: 18px;">随访单</div>
|
|
|
+ <div class="text-center" style="font-size: 16px;">${obj.hospitalname}</div>
|
|
|
+ <div class="mt-2" style="display: flex;">
|
|
|
+ <div>姓名:<span class="font-bold">${obj.username}</span></div>
|
|
|
+ <div style="margin: auto;">性别:<span class="font-bold"> ${obj.sex}</span></div>
|
|
|
+ <div>年龄:<span class="font-bold">${obj.age}</span></div>
|
|
|
+ </div>
|
|
|
+ <div class="mt" style="display: flex;">
|
|
|
+ <div>慢病类型:<span class="font-bold">${obj.chronicDiseaseType}</span></div>
|
|
|
+ <div style="margin-left: auto;">手机:<span class="font-bold">${obj.phone}</span></div>
|
|
|
+ </div>
|
|
|
+ <div class="mt" style="display: flex;font-size: 10px;">
|
|
|
+ <div style="margin-left: auto;"><span class="font-bold">${obj.medicalInsuranceType}</span></div>
|
|
|
+ </div>
|
|
|
+ <div class="" style="font-size: 14px;border: 1px solid #000;border-radius: 4px;">
|
|
|
+ <div class="font-bold" style="display: flex;border: 1px solid #000;">
|
|
|
+ <div class="itemtitle">项目</div>
|
|
|
+ <div class="itemstyle">状态</div>
|
|
|
+ </div>
|
|
|
+ <div style="display: flex;border:1px solid #000 ;">
|
|
|
+ <div class="itemtitle">随访情况</div>
|
|
|
+ <div class="itemstyle" style="display: flex;">
|
|
|
+ ${obj.patientvisit.code >= 0 || obj.patientvisit.code <= 8 ? `
|
|
|
+ <div class="" style="width:11%;font-size:18px;line-height:1.1">${obj.patientvisit.code == 2 || obj.patientvisit.code == 4 || obj.patientvisit.code == 6 ? '☑' : '🗷'}</div>
|
|
|
+ <div style="width:89%">
|
|
|
+ <div>${codemsg[obj.patientvisit.code]} ${time ? `<div>(${time})</div>` : ''}</div>
|
|
|
+ </div>
|
|
|
+ `: `
|
|
|
+ <div class="" style="width:11%;font-size:18px;line-height:1.1">🗷</div>
|
|
|
+ <div style="width:89%">
|
|
|
+ <div>${codemsg[9]}</div>
|
|
|
+ </div>`
|
|
|
+ }
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="display: flex;border: 1px solid #000;">
|
|
|
+ <div class="itemtitle">体检检查</div>
|
|
|
+ <div class="itemstyle" style="display: flex;">
|
|
|
+ ${Number(obj.patientother.istj) ? `
|
|
|
+ <div class="" style="width:11%;font-size:18px;line-height:1.1">☑</div>
|
|
|
+ <div style="width:89%">
|
|
|
+ <div>本年度已完成体检</div>
|
|
|
+ </div>`:
|
|
|
+ `
|
|
|
+ <div class="" style="width:11%;font-size:18px;line-height:1.1">🗷</div>
|
|
|
+ <div style="width:89%">
|
|
|
+ <div>本年度未完成体检</div>
|
|
|
+ </div>
|
|
|
+ `}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="display: flex;border: 1px solid #000;">
|
|
|
+ <div class="itemtitle">患者签约</div>
|
|
|
+ <div class="itemstyle" style="display: flex;">
|
|
|
+ ${obj.patientother.tlSign && obj.patientother.tlSign.qyysxm.length ? ` <div class="" style="width:11%;font-size:18px;line-height:1.1">☑</div>
|
|
|
+ <div style="width:89%">
|
|
|
+ <div>已签约(${obj.patientother.tlSign.qyrq})</div>
|
|
|
+ <div>${obj.patientother.tlSign.qyysxm}</div>
|
|
|
+ <div>${obj.patientother.tlSign.jgmc}</div>
|
|
|
+ </div>`:
|
|
|
+ ` <div class="" style="width:11%;font-size:18px;line-height:1.1">🗷</div>
|
|
|
+ <div style="width:89%">
|
|
|
+ <div>未签约</div>
|
|
|
+ </div>`
|
|
|
+ }
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="date" class="mt" style="font-size: 12px;text-align: right;">
|
|
|
+ ${timeTrans({ format: 'Y年M月D日 h:m:s' })}
|
|
|
+ </div>
|
|
|
+ <div style="padding-top:150px;text-align: center;">
|
|
|
+ ------ 访单 -------
|
|
|
+ </div>
|
|
|
+ </div>`
|
|
|
+ this.printRender(html);
|
|
|
+ },
|
|
|
+ printRender(html) {
|
|
|
+ let t = this
|
|
|
+ // 获取<webview>节点
|
|
|
+ const webview = this.$refs.printWebview
|
|
|
+ // 发送信息到<webview>里的页面
|
|
|
+ webview.send('webview-print-render', {
|
|
|
+ printName: t.printerObj.displayName,
|
|
|
+ html: 1
|
|
|
+ })
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang="less">
|
|
|
+.containerPinter {
|
|
|
+ width: 280px;
|
|
|
+ height: 600px;
|
|
|
+ position: fixed;
|
|
|
+ // left: -10000px;
|
|
|
+ background-color: #fff;
|
|
|
+ z-index: 999;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+.el-notification {
|
|
|
+ width: 15rem;
|
|
|
+ padding: 0.8rem 1.5rem 0.8rem 0.8rem;
|
|
|
+ border-radius: 0.5rem;
|
|
|
+
|
|
|
+ .el-notification__icon {
|
|
|
+ height: 1.8rem;
|
|
|
+ width: 1.8rem;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-notification__group {
|
|
|
+ margin-left: 0.8rem;
|
|
|
+ margin-right: 0.5rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-notification__title {
|
|
|
+ font-size: 1.1rem;
|
|
|
+ line-height: 1.8rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-notification__content {
|
|
|
+ font-size: 0.9rem;
|
|
|
+ line-height: 1.5rem;
|
|
|
+ margin-top: 0.3rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-notification__closeBtn {
|
|
|
+ top: 0.8rem;
|
|
|
+ right: 0.8rem;
|
|
|
+ font-size: 1.2rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|