Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 4 years ago
parent
commit
7f6cbbff5b

+ 22 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

@@ -77,6 +77,9 @@
77 77
           <el-button size="small" @click="open(8)" type="primary"
78 78
           >明细对账
79 79
           </el-button>
80
+          <el-button size="small" @click="open(9)" type="primary"
81
+          >结算单
82
+          </el-button>
80 83
         </div>
81 84
 
82 85
         <div class="mainCenter">
@@ -237,6 +240,13 @@
237 240
       :visible.sync="treatVisible">
238 241
       <treatPrint :paramsObj='paramsObj'></treatPrint>
239 242
     </el-dialog>
243
+    <el-dialog
244
+      class="centerDialog"
245
+      width="1200px"
246
+      title="打印"
247
+      :visible.sync="statementVisible">
248
+      <statementPrint :paramsObj='paramsObj'></statementPrint>
249
+    </el-dialog>
240 250
   </div>
241 251
 </template>
242 252
 
@@ -254,6 +264,7 @@
254 264
   import {getPatientInfo, getSchedulePatientList, Refund, register, upload} from '@/api/his/his'
255 265
   import RegisterDialog from "./components/registerDialog";
256 266
   import treatPrint from './treatPrint'
267
+  import statementPrint from './statementPrint'
257 268
   import ChargeDialog from "./components/chargeDialog";
258 269
 
259 270
   const moment = require('moment')
@@ -268,6 +279,7 @@
268 279
       prescriptionTable,
269 280
       additionalCharges,
270 281
       treatPrint,
282
+      statementPrint
271 283
 
272 284
     },
273 285
     data() {
@@ -315,7 +327,8 @@
315 327
         order: {},
316 328
         addtions_charge: [],
317 329
         treatVisible: false,
318
-        paramsObj: {}
330
+        paramsObj: {},
331
+        statementVisible:false
319 332
       }
320 333
     },
321 334
     created() {
@@ -769,6 +782,8 @@
769 782
 
770 783
 
771 784
 
785
+        } else if (index == 9){
786
+          this.statementVisible = true
772 787
         }
773 788
       },
774 789
 
@@ -1261,5 +1276,11 @@
1261 1276
   }
1262 1277
 
1263 1278
   }
1279
+  .centerDialog{
1280
+    .el-dialog__body{
1281
+      max-height: calc(100vh - 100px) !important;
1282
+      padding: 0 20px;
1283
+    }
1284
+  }
1264 1285
 </style>
1265 1286
 

+ 359 - 0
src/xt_pages/outpatientCharges/statementPrint.vue View File

@@ -0,0 +1,359 @@
1
+<template>
2
+  <div>
3
+       <template>
4
+        <el-button
5
+          style="position:fixed;right:25px;z-index:999"
6
+          :loading="loading"
7
+          size="small"
8
+          icon="el-icon-printer"
9
+          @click="printThisPage"
10
+          type="primary"
11
+          >打印</el-button
12
+        >
13
+      </template>
14
+            
15
+      <div class='dialysisPage' style="padding-top:40px;">
16
+        <printOne v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printOne>
17
+      </div>
18
+  </div>
19
+</template>
20
+
21
+<script>
22
+
23
+
24
+import { parseTime } from "@/utils";
25
+import { getDialysisRecord } from "@/api/dialysis";
26
+import { getDataConfig } from "@/utils/data";
27
+import { jsGetAge, uParseTime } from "@/utils/tools";
28
+
29
+import BreadCrumb from "@/xt_pages/components/bread-crumb";
30
+import print from "print-js";
31
+import printOne from "./statementTemplate/printOne"
32
+import { getAllDoctorList,getAllHisPatientList,getPrescriptionPrint } from "@/api/project/project"
33
+export default {
34
+  name: "dialysisPrintOrder",
35
+  components: {
36
+    BreadCrumb,
37
+    printOne
38
+  },
39
+  props:{
40
+    paramsObj:Object
41
+  },
42
+  data() {
43
+    return {
44
+      crumbs: [
45
+        { path: false, name: '门诊医生站' },
46
+        { path: false, name: '打印' }
47
+      ],
48
+      record_date:"",
49
+      patientTableData:[],
50
+      advicePrint:[],
51
+      hisPatient:{},
52
+      patient:{},
53
+      search_input:"",
54
+      loading:false,
55
+      patient_id:0,
56
+      prescription_id:0,
57
+      ids:''
58
+    };
59
+  },
60
+  methods:{
61
+    printThisPage() {
62
+      var ptime = Math.round(new Date().getTime() / 1000);
63
+      this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
64
+
65
+      const style =
66
+        '@media print {.statementTitle{font-size: 28px;text-align: center;font-weight: bold;margin-bottom: 10px;}.statementTable{width: 100%;text-align: center;border-collapse: collapse;line-height: 40px;font-size: 14px;border-color: #000;}}';
67
+        printJS({
68
+            printable: "statement-print",
69
+            type: "html",
70
+            style: style,
71
+            scanStyles: false
72
+        });
73
+
74
+      // if (this.org_template_info.template_id == 1) {
75
+      //   printJS({
76
+      //     printable: "dialysis-print-box",
77
+      //     type: "html",
78
+      //     style: style,
79
+      //     scanStyles: false
80
+      //   });
81
+      // }
82
+    },
83
+    getAllDoctorList(){
84
+      getAllDoctorList().then(response=>{
85
+        if(response.data.state == 1){
86
+               var doctor =  response.data.data.doctor
87
+               
88
+               this.doctorList = doctor
89
+             }
90
+         })   
91
+     },
92
+    getAllHisPatientList(){
93
+         const params = {
94
+           record_date:this.record_date
95
+         }
96
+      getAllHisPatientList(params).then(response=>{
97
+         if(response.data.state == 1){
98
+            this.patientTableData = response.data.data.list
99
+            this.patientTableDataTwo = response.data.data.list
100
+
101
+            console.log('222', this.patientTableData)
102
+            let cal_one = 0
103
+            let cal_two = 0
104
+            for (let i = 0; i < response.data.data.list.length; i++) {
105
+              if (response.data.data.list[i].prescription == null || response.data.data.list[i].prescription.length == 0) {
106
+                cal_one = cal_one + 1
107
+              }
108
+              if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
109
+                cal_two = cal_two + 1
110
+              }
111
+            }
112
+            // this.$refs.tab.setCurrentRow(this.patientTableData[0])
113
+            // console.log(this.patientTableData[0])
114
+            // this.choosePatient(this.patientTableData[0])
115
+            this.cal_one = cal_one
116
+            this.cal_two = cal_two   
117
+         }
118
+      })
119
+    },
120
+
121
+    changePatient(row){
122
+      console.log("row",row)
123
+      this.patient_id = row.patient_id
124
+      this.record_date = this.record_date
125
+      this.prescription_id = this.prescription_id
126
+      //   var params = {
127
+      //     patient_id:row.patient_id,
128
+      //     record_date:this.record_date,
129
+      //     prescription_id:this.prescription_id,
130
+      //   }
131
+      // getPrescriptionPrint(params).then(response=>{
132
+      //     if(response.data.state == 1){
133
+      //       var advicePrint =  response.data.data.advicePrint
134
+      //       console.log("adviceprint",advicePrint)
135
+      //       this.advicePrint = advicePrint
136
+      //       // var hisPatient =  response.data.data.hisPatient
137
+      //       // console.log("hispatient",hisPatient)
138
+      //       // this.hisPatient = hisPatient
139
+      //       var patient =  response.data.data.patient
140
+      //       console.log("patient",patient)
141
+      //       this.patient = patient
142
+      //       var doctorPorject = response.data.data.doctorPorject
143
+      //       console.log("doctorporject",doctorPorject)
144
+      //     }
145
+      // })
146
+    },
147
+    searchAction(){
148
+
149
+    }
150
+    
151
+  },
152
+
153
+  created() {
154
+    this.getAllDoctorList()
155
+    var record_date = this.paramsObj.record
156
+    this.record_date = record_date
157
+    console.log("record_date",record_date)
158
+    this.prescription_id = this.paramsObj.prescription_id
159
+    this.patient_id = this.paramsObj.patient_id
160
+    this.ids = this.paramsObj.ids
161
+    this.getAllHisPatientList(record_date)
162
+  },
163
+  watch:{
164
+    paramsObj:{//深度监听,可监听到对象、数组的变化
165
+      handler(val, oldVal){
166
+        this.paramsObj = val
167
+        this.patient_id = this.paramsObj.patient_id
168
+        var record_date = this.paramsObj.record
169
+        this.record_date = record_date
170
+        var prescription_id = this.paramsObj.prescription_id
171
+        this.prescription_id = prescription_id
172
+        this.ids = this.paramsObj.ids
173
+        
174
+      },
175
+      deep:true
176
+    }
177
+  }
178
+
179
+};
180
+</script>
181
+
182
+<style>
183
+.dialysis-print-order {
184
+  width: 960px;
185
+  margin: 0 auto;
186
+}
187
+
188
+.dialysis-print-order .order-yy-name {
189
+  margin: auto;
190
+  text-align: center;
191
+  font-size: 20px;
192
+  letter-spacing: 5px;
193
+}
194
+
195
+.dialysis-print-order .order-title {
196
+  margin: auto;
197
+  font-weight: 600;
198
+  text-align: center;
199
+  font-size: 22px;
200
+  padding: 10px;
201
+}
202
+
203
+.dialysis-print-order .table-box {
204
+  width: 100%;
205
+  line-height: 23px;
206
+  font-size: 14px;
207
+}
208
+
209
+.dialysis-print-order .print-table {
210
+  width: 100%;
211
+  text-align: center;
212
+  border-collapse: collapse;
213
+  line-height: 40px;
214
+  font-size: 14px;
215
+  border-color: #000;
216
+}
217
+
218
+.dialysis-print-order .print-table-no {
219
+  width: 100%;
220
+  text-align: center;
221
+  border-collapse: collapse;
222
+  font-size: 14px;
223
+}
224
+
225
+.dialysis-print-order .under-line {
226
+  border-bottom: 1px solid #999;
227
+  width: 95%;
228
+  text-align: center;
229
+  margin-left: 2px;
230
+}
231
+
232
+.dialysis-print-order .title-box {
233
+  text-align: center;
234
+  font-size: 16px;
235
+}
236
+
237
+.dialysis-print-order .radio-lebel-box {
238
+  font-weight: 400;
239
+  cursor: pointer;
240
+}
241
+
242
+.dialysis-print-order .radio-no {
243
+  opacity: 0;
244
+  outline: none;
245
+  position: absolute;
246
+  margin: 0;
247
+  width: 0;
248
+  height: 0;
249
+  z-index: -1;
250
+}
251
+
252
+.dialysis-print-order .radio-inner {
253
+  white-space: nowrap;
254
+  cursor: pointer;
255
+  outline: none;
256
+  display: inline-block;
257
+  line-height: 1;
258
+  position: relative;
259
+  vertical-align: middle;
260
+}
261
+
262
+.dialysis-print-order .radio-fang {
263
+  display: inline-block;
264
+  position: relative;
265
+  border: 1px solid #000;
266
+  box-sizing: border-box;
267
+  width: 14px;
268
+  height: 14px;
269
+  background-color: #fff;
270
+  z-index: 1;
271
+  transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
272
+    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
273
+}
274
+
275
+.dialysis-print-order .is-checked-radio::after {
276
+  content: "√";
277
+  font-size: 15px;
278
+}
279
+
280
+.dialysis-print-order .print-table-no tr td {
281
+  padding: 8px 5px;
282
+  line-height: 25px;
283
+}
284
+
285
+.dialysis-print-order .print-table tr td {
286
+  padding: 1px 1px;
287
+  /*line-height: 25px;*/
288
+}
289
+
290
+.es-img {
291
+  height: 30px;
292
+}
293
+
294
+.advice-name {
295
+  text-align: left;
296
+}
297
+
298
+.advice-children {
299
+  display: flex;
300
+}
301
+
302
+.title-box-pro {
303
+  border: 0 #fff;
304
+  line-height: 25px;
305
+  height: 25px;
306
+  text-align: left;
307
+  padding-left: 10px !important;
308
+}
309
+.title-box-pro-tr {
310
+  border: 0 #fff;
311
+}
312
+.text-align-left {
313
+  text-align: left !important;
314
+  padding-left: 10px !important;
315
+  font-size: 14px !important;
316
+  line-height: 25px;
317
+}
318
+.print-table-tr-new td {
319
+  line-height: 20px !important;
320
+}
321
+.border-top-solid {
322
+  border: solid 1px #000;
323
+}
324
+.print-template-two tr {
325
+  line-height: 30px;
326
+}
327
+
328
+.table-box1 {
329
+  border: 1px solid #000;
330
+  width: 100%;
331
+  line-height: 30px;
332
+  font-size: 14px;
333
+  border-collapse: collapse;
334
+}
335
+.table-box1 tr {
336
+  border-bottom: 1px solid #000;
337
+}
338
+</style>
339
+
340
+<style lang="scss">
341
+
342
+.newContainer{
343
+  .dialysisPage::-webkit-scrollbar {
344
+    height: 15px;
345
+  }
346
+  
347
+  .el-date-editor{
348
+    .el-input__inner{
349
+      padding-right:0px;
350
+    }
351
+  }
352
+  .el-table td, .el-table th{
353
+    text-align: center;
354
+  }
355
+}
356
+.newContainer::-webkit-scrollbar{
357
+  height: 15px !important;
358
+}
359
+</style>

+ 248 - 0
src/xt_pages/outpatientCharges/statementTemplate/printOne.vue View File

@@ -0,0 +1,248 @@
1
+<template>
2
+    <div id="statement-print" class="statement-print">
3
+        <div class="statementTitle">广东省社会医疗保险医疗费用结算单</div>
4
+        <table class="statementTable" border="1">
5
+            <tr>
6
+                <td width="80">机构名称</td>
7
+                <td colspan="4">**市**街社区卫生服务中心</td>
8
+                <td width="80">机构编码</td>
9
+                <td colspan="4">011*****</td>
10
+                <td width="100">医保结算级别</td>
11
+                <td width="100"></td>
12
+            </tr>
13
+            <tr>
14
+                <td width="90">就医登记号</td>
15
+                <td colspan="11"></td>
16
+            </tr>
17
+            <tr>
18
+                <td width="80">姓名</td>
19
+                <td width="80">张三</td>
20
+                <td width="80">性别</td>
21
+                <td width="50">男</td>
22
+                <td width="80">出生日期</td>
23
+                <td width="100">2010-10-10</td>
24
+                <td width="90">个人电脑号</td>
25
+                <td width="110">1234567890</td>
26
+                <td width="80">人员类别</td>
27
+                <td colspan="3"></td>
28
+            </tr>
29
+            <tr>
30
+                <td>单位名称</td>
31
+                <td colspan="5">**市**街社区卫生服务中心</td>
32
+                <td width="80">联系电话</td>
33
+                <td width="110">12345678900</td>
34
+                <td width="80">身份证号</td>
35
+                <td colspan="3">123456789123456789</td>
36
+            </tr>
37
+            <tr>
38
+                <td>住院号</td>
39
+                <td>121212</td>
40
+                <td>科别</td>
41
+                <td width="100">隔离病房</td>
42
+                <td>床号</td>
43
+                <td>0308</td>
44
+                <td>入院日期</td>
45
+                <td>2010-10-10</td>
46
+                <td>出院日期</td>
47
+                <td width="100">2010-10-10</td>
48
+                <td>住院天数</td>
49
+                <td>19</td>
50
+            </tr>
51
+            <tr>
52
+                <td>险种</td>
53
+                <td colspan="2">职工医保</td>
54
+                <td>入院第一诊断</td>
55
+                <td colspan="3"></td>
56
+                <td>出院第一诊断</td>
57
+                <td colspan="4"></td>
58
+            </tr>
59
+            <tr>
60
+                <td>业务类别</td>
61
+                <td colspan="5" style="text-align:left;padding-left:10px;">业务类别</td>
62
+                <td>结算时间</td>
63
+                <td colspan="5" style="text-align:left;padding-left:10px;">2020-10-10 12:22:11</td>
64
+            </tr>
65
+            <tr>
66
+                <td colspan="12" style="text-align:left;padding-left:10px;">
67
+                    本次就医:总费用123456.78元,基金支付123456.00元,个人支付0.78元。
68
+                </td>
69
+            </tr>
70
+            <tr>
71
+                <td>费用名称</td>
72
+                <td colspan="2">总费用</td>
73
+                <td>自费</td>
74
+                <td colspan="2">部分项目自付</td>
75
+                <td>费用名称</td>
76
+                <td colspan="2">总费用</td>
77
+                <td>自费</td>
78
+                <td colspan="2">部分项目自付</td>
79
+            </tr>
80
+            <tr>
81
+                <td>床位费</td>
82
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
83
+                <td style="text-align:right;padding-right:10px;">0.00</td>
84
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
85
+                <td>西成药</td>
86
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
87
+                <td style="text-align:right;padding-right:10px;">0.00</td>
88
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
89
+            </tr>
90
+            <tr>
91
+                <td>中药费</td>
92
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
93
+                <td style="text-align:right;padding-right:10px;">0.00</td>
94
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
95
+                <td>中成药</td>
96
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
97
+                <td style="text-align:right;padding-right:10px;">0.00</td>
98
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
99
+            </tr>
100
+            <tr>
101
+                <td>中草药</td>
102
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
103
+                <td style="text-align:right;padding-right:10px;">0.00</td>
104
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
105
+                <td>检查费</td>
106
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
107
+                <td style="text-align:right;padding-right:10px;">0.00</td>
108
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
109
+            </tr>
110
+            <tr>
111
+                <td>治疗费</td>
112
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
113
+                <td style="text-align:right;padding-right:10px;">0.00</td>
114
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
115
+                <td>放射费</td>
116
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
117
+                <td style="text-align:right;padding-right:10px;">0.00</td>
118
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
119
+            </tr>
120
+            <tr>
121
+                <td>手术费</td>
122
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
123
+                <td style="text-align:right;padding-right:10px;">0.00</td>
124
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
125
+                <td>化验费</td>
126
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
127
+                <td style="text-align:right;padding-right:10px;">0.00</td>
128
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
129
+            </tr>
130
+            <tr>
131
+                <td>输血费</td>
132
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
133
+                <td style="text-align:right;padding-right:10px;">0.00</td>
134
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
135
+                <td>输氧费</td>
136
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
137
+                <td style="text-align:right;padding-right:10px;">0.00</td>
138
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
139
+            </tr>
140
+            <tr>
141
+                <td>其他</td>
142
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
143
+                <td style="text-align:right;padding-right:10px;">0.00</td>
144
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
145
+                <td>麻醉费</td>
146
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
147
+                <td style="text-align:right;padding-right:10px;">0.00</td>
148
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
149
+            </tr>
150
+            <tr>
151
+                <td>材料费</td>
152
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
153
+                <td style="text-align:right;padding-right:10px;">0.00</td>
154
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
155
+                <td>特殊检查费</td>
156
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
157
+                <td style="text-align:right;padding-right:10px;">0.00</td>
158
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
159
+            </tr>
160
+            <tr>
161
+                <td>特殊治疗费</td>
162
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
163
+                <td style="text-align:right;padding-right:10px;">0.00</td>
164
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
165
+                <td style="text-align:right;padding-right:10px;"></td>
166
+                <td colspan="2" style="text-align:right;padding-right:10px;"></td>
167
+                <td style="text-align:right;padding-right:10px;"></td>
168
+                <td colspan="2" style="text-align:right;padding-right:10px;"></td>
169
+            </tr>
170
+            <tr>
171
+                <td>合计</td>
172
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
173
+                <td style="text-align:right;padding-right:10px;">0.00</td>
174
+                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
175
+                <td style="text-align:right;padding-right:10px;"></td>
176
+                <td colspan="2" style="text-align:right;padding-right:10px;"></td>
177
+                <td style="text-align:right;padding-right:10px;"></td>
178
+                <td colspan="2" style="text-align:right;padding-right:10px;"></td>
179
+            </tr>
180
+            <tr>
181
+                <td colspan="3" style="text-align:left;padding-left:10px;">基本医疗保险统筹基金支付</td>
182
+                <td colspan="3"></td>
183
+                <td colspan="3" style="text-align:left;padding-left:10px;">大额基金支付</td>
184
+                <td colspan="3"></td>
185
+            </tr>
186
+            <tr>
187
+                <td colspan="3" style="text-align:left;padding-left:10px;">大病基金支付</td>
188
+                <td colspan="3"></td>
189
+                <td colspan="3" style="text-align:left;padding-left:10px;">补充保险基金支付</td>
190
+                <td colspan="3"></td>
191
+            </tr>
192
+            <tr>
193
+                <td colspan="3" style="text-align:left;padding-left:10px;">医疗救助基金支付</td>
194
+                <td colspan="3"></td>
195
+                <td colspan="3" style="text-align:left;padding-left:10px;">公务员基金支付</td>
196
+                <td colspan="3"></td>
197
+            </tr>
198
+            <tr>
199
+                <td>收款人:</td>
200
+                <td colspan="2"></td>
201
+                <td>审核人:</td>
202
+                <td colspan="2"></td>
203
+                <td>制单人:</td>
204
+                <td colspan="2"></td>
205
+                <td>打印日期</td>
206
+                <td colspan="2"></td>
207
+            </tr>
208
+            <tr>
209
+                <td colspan="12" style="text-align:left;padding-left:10px;line-height:20px;">
210
+                    注: 1、部分项目自付金额是指基本医疗保险范围内的项目需参保人先按规定比例自付的金额。<br />
211
+                    &ensp;&ensp;&ensp;2、此表由医院打印。<br />
212
+                    &ensp;&ensp;&ensp;3、此表一式两份,医院、参保人各一份。
213
+                </td>
214
+            </tr>
215
+            <tr>
216
+                <td colspan="12" style="text-align:left;padding-left:10px;">
217
+                    病人家属签字:
218
+                </td>
219
+            </tr>
220
+        </table>
221
+    </div>
222
+</template>
223
+
224
+
225
+
226
+<style lang="scss" scoped>
227
+.statement-print{
228
+    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
229
+    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset; 
230
+    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
231
+    margin-bottom: 20px;
232
+    padding:20px 10px;
233
+}
234
+.statementTitle{
235
+    font-size: 28px;
236
+    text-align: center;
237
+    font-weight: bold;
238
+    margin-bottom: 10px;
239
+}
240
+.statementTable{
241
+    width: 100%;
242
+    text-align: center;
243
+    border-collapse: collapse;
244
+    line-height: 40px;
245
+    font-size: 14px;
246
+    border-color: #000;
247
+}
248
+</style>