pm.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <title>Document</title>
  8. <style>
  9. body,
  10. html {
  11. padding: 0;
  12. margin: 0;
  13. font-size: 14px;
  14. }
  15. @page {
  16. margin: 0px;
  17. }
  18. .text-center {
  19. text-align: center;
  20. }
  21. .mt {
  22. margin-top: 5px;
  23. }
  24. .mt-1 {
  25. margin-top: 10px;
  26. }
  27. .mt-2 {
  28. margin-top: 20px;
  29. }
  30. .mt-3 {
  31. margin-top: 30px;
  32. }
  33. .ml-1 {
  34. margin-left: 10px;
  35. }
  36. .p-1 {
  37. padding: 10px;
  38. }
  39. .font-bold {
  40. font-weight: bold;
  41. }
  42. .w-50 {
  43. width: 50%;
  44. }
  45. .itemtitle{
  46. width: 25%;
  47. padding:4px 5px;
  48. border-right:1px solid #000;
  49. }
  50. .itemstyle{
  51. width: 75%;
  52. padding:4px 5px;
  53. }
  54. </style>
  55. </head>
  56. <body id="bd" style="padding:15px 5px;box-sizing: border-box;">
  57. <!-- <div style="box-sizing: border-box;padding-top:40px;">
  58. <div class="text-center font-bold" style="font-size: 18px;">随访单</div>
  59. <div class="text-center" style="font-size: 16px;">社区卫生服务中心</div>
  60. <div class="mt-2" style="display: flex;">
  61. <div>姓名:<span class="font-bold">王长策</span></div>
  62. <div style="margin: auto;">性别:<span class="font-bold"> 女</span></div>
  63. <div>年龄:<span class="font-bold">62岁</span></div>
  64. </div>
  65. <div class="mt" style="display: flex;">
  66. <div>慢病类型:<span class="font-bold">高血压</span></div>
  67. <div style="margin-left: auto;">手机:<span class="font-bold">18812312312</span></div>
  68. </div>
  69. <div class="mt" style="display: flex;font-size: 10px;">
  70. <div style="margin-left: auto;"><span class="font-bold">公费医保</span></div>
  71. </div>
  72. <div class="" style="font-size: 14px;border: 1px solid #000;border-radius: 4px;">
  73. <div class="font-bold" style="display: flex;border: 1px solid #000;">
  74. <div class="itemtitle">项目</div>
  75. <div class="itemstyle">状态</div>
  76. </div>
  77. <div style="display: flex;border:1px solid #000 ;">
  78. <div class="itemtitle">随访情况</div>
  79. <div class="itemstyle"><span>×</span> 您需要随访!</div>
  80. </div>
  81. <div style="display: flex;border: 1px solid #000;">
  82. <div class="itemtitle">体检检查</div>
  83. <div class="itemstyle">
  84. <div><span>√</span> 已完成体检</div>
  85. <div>体检时间:2023-07-10</div>
  86. </div>
  87. </div>
  88. <div style="display: flex;border: 1px solid #000;">
  89. <div class="itemtitle">患者签约</div>
  90. <div class="itemstyle">
  91. <div><span>√</span> 已签约</div>
  92. <div>医生: 王姥爷</div>
  93. <div>医院: 慈溪市桥头医院慈溪市桥头医院</div>
  94. </div>
  95. </div>
  96. </div>
  97. <div id="date" class="mt" style="font-size: 12px;text-align: right;">
  98. </div>
  99. <div style="padding-top:140px;text-align: center;">
  100. ------ 访单 -------
  101. </div>
  102. </div> -->
  103. </body>
  104. <script>
  105. const { ipcRenderer } = require('electron')
  106. ipcRenderer.on('webview-print-render', (event, info) => {
  107. // 执行渲染
  108. console.log(info);
  109. document.getElementById('bd').innerHTML = info.html
  110. ipcRenderer.sendToHost('webview-print-do',{a:1}).then(()=>{console.log(1)})
  111. })
  112. </script>
  113. <style>
  114. #bd {}
  115. </style>
  116. </html>