123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>Document</title>
- <style>
- body,
- html {
- padding: 0;
- margin: 0;
- font-size: 14px;
-
- }
- @page {
- margin: 0px;
- }
- .text-center {
- text-align: center;
- }
- .mt {
- margin-top: 5px;
- }
- .mt-1 {
- margin-top: 10px;
- }
- .mt-2 {
- margin-top: 20px;
- }
- .mt-3 {
- margin-top: 30px;
- }
- .ml-1 {
- margin-left: 10px;
- }
- .p-1 {
- padding: 10px;
- }
- .font-bold {
- font-weight: bold;
- }
- .w-50 {
- width: 50%;
- }
- .itemtitle{
- width: 25%;
- padding:4px 5px;
- border-right:1px solid #000;
- }
- .itemstyle{
- width: 75%;
- padding:4px 5px;
- }
- </style>
- </head>
- <body id="bd" style="padding:15px 5px;box-sizing: border-box;">
- <!-- <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;">社区卫生服务中心</div>
- <div class="mt-2" style="display: flex;">
- <div>姓名:<span class="font-bold">王长策</span></div>
- <div style="margin: auto;">性别:<span class="font-bold"> 女</span></div>
- <div>年龄:<span class="font-bold">62岁</span></div>
- </div>
- <div class="mt" style="display: flex;">
- <div>慢病类型:<span class="font-bold">高血压</span></div>
- <div style="margin-left: auto;">手机:<span class="font-bold">18812312312</span></div>
- </div>
- <div class="mt" style="display: flex;font-size: 10px;">
- <div style="margin-left: auto;"><span class="font-bold">公费医保</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"><span>×</span> 您需要随访!</div>
- </div>
- <div style="display: flex;border: 1px solid #000;">
- <div class="itemtitle">体检检查</div>
- <div class="itemstyle">
- <div><span>√</span> 已完成体检</div>
- <div>体检时间:2023-07-10</div>
- </div>
- </div>
- <div style="display: flex;border: 1px solid #000;">
- <div class="itemtitle">患者签约</div>
- <div class="itemstyle">
- <div><span>√</span> 已签约</div>
- <div>医生: 王姥爷</div>
- <div>医院: 慈溪市桥头医院慈溪市桥头医院</div>
- </div>
- </div>
- </div>
- <div id="date" class="mt" style="font-size: 12px;text-align: right;">
- </div>
- <div style="padding-top:140px;text-align: center;">
- ------ 访单 -------
- </div>
- </div> -->
- </body>
- <script>
- const { ipcRenderer } = require('electron')
- ipcRenderer.on('webview-print-render', (event, info) => {
- // 执行渲染
- console.log(info);
- document.getElementById('bd').innerHTML = info.html
- ipcRenderer.sendToHost('webview-print-do',{a:1}).then(()=>{console.log(1)})
- })
-
- </script>
- <style>
- #bd {}
- </style>
- </html>
|