|
@@ -0,0 +1,443 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="main-contain">
|
|
3
|
+ <div class="position">
|
|
4
|
+ <bread-crumb :crumbs="crumbs"></bread-crumb>
|
|
5
|
+ <el-row style="float:right;">
|
|
6
|
+ <el-col :span="24">
|
|
7
|
+ <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
|
|
8
|
+ </el-col>
|
|
9
|
+ </el-row>
|
|
10
|
+ </div>
|
|
11
|
+ <div class="app-container" style="background-color: white;">
|
|
12
|
+
|
|
13
|
+ <div id="print_content">
|
|
14
|
+ <div class="print_main_content">
|
|
15
|
+ <div class="order_title_panl">
|
|
16
|
+ <span class="main_title">
|
|
17
|
+ 汇总
|
|
18
|
+ </span>
|
|
19
|
+ <span style="float:left;">打印日期:
|
|
20
|
+ {{$route.query.schedule_date}}
|
|
21
|
+ </span>
|
|
22
|
+ </div>
|
|
23
|
+ <div class="table_panel">
|
|
24
|
+
|
|
25
|
+ <table class="table">
|
|
26
|
+ <thead>
|
|
27
|
+ <tr>
|
|
28
|
+ <td width="60" v-if="gatherSetting.index_number == 1">序号</td>
|
|
29
|
+ <td width="100" v-if="gatherSetting.name==1">姓名</td>
|
|
30
|
+ <td width="100" v-if="gatherSetting.dialysis_no==1">透析号</td>
|
|
31
|
+ <td width="100" v-if="gatherSetting.admission_number==1">住院(门诊)号</td>
|
|
32
|
+ <td width="100" v-if="gatherSetting.mode_type==1">透析模式</td>
|
|
33
|
+ <td width="100" v-if="gatherSetting.dialysis_dialyszers == 1">透析器</td>
|
|
34
|
+ <td width="100" v-if="gatherSetting.dialysis_irrigation ==1">灌流器</td>
|
|
35
|
+ <td width="100" v-if="gatherSetting.dialysis_irrigation ==1">滤过器</td>
|
|
36
|
+ <td width="100" v-if="gatherSetting.change_nurse ==1">换药包/穿刺针</td>
|
|
37
|
+ <td width="100" v-if="gatherSetting.anticoagulant==1">抗凝剂(首剂)(维持)(总量)</td>
|
|
38
|
+ <td width="200" v-if="gatherSetting.tube==1">封管液</td>
|
|
39
|
+ <td width="100" v-if="gatherSetting.kalium==1">钾</td>
|
|
40
|
+ <td width="100" v-if="gatherSetting.calcium==1">钙</td>
|
|
41
|
+ <td width="100" v-if="gatherSetting.cuhong == 1">促红素</td>
|
|
42
|
+ <td width="100" v-if="gatherSetting.zuoka == 1">左卡</td>
|
|
43
|
+ <td width="100" v-if="gatherSetting.niaojimei == 1">尿激酶</td>
|
|
44
|
+ <td width="100" v-if="gatherSetting.putaosuangai == 1">葡萄糖酸钙</td>
|
|
45
|
+
|
|
46
|
+ </tr>
|
|
47
|
+ </thead>
|
|
48
|
+ <tbody>
|
|
49
|
+ <tr v-for="(item,i) in list" :key="i">
|
|
50
|
+ <td width="60" v-if="gatherSetting.index_number == 1">{{ i+1 }}</td>
|
|
51
|
+ <td width="100" v-if="gatherSetting.name==1">
|
|
52
|
+ {{item.patient.name}}
|
|
53
|
+ </td>
|
|
54
|
+ <td width="100" v-if="gatherSetting.dialysis_no==1">
|
|
55
|
+ {{item.patient.dialysis_no}}
|
|
56
|
+ </td>
|
|
57
|
+ <td width="100" v-if="gatherSetting.admission_number==1">
|
|
58
|
+ {{item.xt_receive_treatment_asses.admission_number}}
|
|
59
|
+ </td>
|
|
60
|
+ <td width="100" v-if="gatherSetting.mode_type==1">
|
|
61
|
+ <span v-if="item.mode_id == 1">HD</span>
|
|
62
|
+ <span v-if="item.mode_id == 2">HDF</span>
|
|
63
|
+ <span v-if="item.mode_id == 3">HD+HP</span>
|
|
64
|
+ <span v-if="item.mode_id == 4">HP</span>
|
|
65
|
+ <span v-if="item.mode_id == 5">HF</span>
|
|
66
|
+ <span v-if="item.mode_id == 6">SCUF</span>
|
|
67
|
+ <span v-if="item.mode_id == 7">IUF</span>
|
|
68
|
+ <span v-if="item.mode_id == 8">HFHD</span>
|
|
69
|
+ <span v-if="item.mode_id == 9">HFHD+HP</span>
|
|
70
|
+ <span v-if="item.mode_id == 10">PHF</span>
|
|
71
|
+ <span v-if="item.mode_id == 11">HFR</span>
|
|
72
|
+ <span v-if="item.mode_id == 12">HDF+HP</span>
|
|
73
|
+ <span v-if="item.mode_id == 13">CRRT</span>
|
|
74
|
+ <span v-if="item.mode_id == 19">IUF+HD</span>
|
|
75
|
+ <span v-if="item.mode_id == 20">UF</span>
|
|
76
|
+ <span v-if="item.mode_id == 21">HD+</span>
|
|
77
|
+ <span v-if="item.mode_id == 22">血浆胆红素吸附+HDF</span>
|
|
78
|
+ <span v-if="item.mode_id == 23">血浆胆红素吸附</span>
|
|
79
|
+ <span v-if="item.mode_id == 24">I-HDF</span>
|
|
80
|
+ <span v-if="item.mode_id == 25">HD高通F</span>
|
|
81
|
+ <span v-if="item.mode_id == 26">CVVH</span>
|
|
82
|
+ <span v-if="item.mode_id == 27">CVVHD</span>
|
|
83
|
+ <span v-if="item.mode_id == 28">CVVHDF</span>
|
|
84
|
+ <span v-if="item.mode_id == 29">PE</span>
|
|
85
|
+ <span v-if="item.mode_id == 30">血浆胆红素吸附+HP</span>
|
|
86
|
+ <span v-if="item.mode_id == 31">HPD</span>
|
|
87
|
+ <span v-if="item.mode_id == 32">HDP</span>
|
|
88
|
+ <span v-if="item.mode_id == 33">HFD</span>
|
|
89
|
+ <span v-if="item.mode_id == 34">HDF100</span>
|
|
90
|
+ <span v-if="item.mode_id == 35">HDF600</span>
|
|
91
|
+ <span v-if="item.mode_id == 35">HDF800</span>
|
|
92
|
+ <span v-if="item.mode_id == 35">HDF1000</span>
|
|
93
|
+ </td>
|
|
94
|
+ <td width="100" v-if="gatherSetting.dialysis_dialyszers == 1">
|
|
95
|
+ {{item.dialysis_prescription.dialysis_dialyszers}}
|
|
96
|
+ </td>
|
|
97
|
+ <td width="100" v-if="gatherSetting.dialysis_irrigation ==1">
|
|
98
|
+ <span>{{item.dialysis_prescription.dialysis_irrigation}}</span>
|
|
99
|
+ </td>
|
|
100
|
+ <td width="100" v-if="gatherSetting.dialysis_irrigation ==1">
|
|
101
|
+ <span>{{item.dialysis_prescription.dialysis_strainer}}</span>
|
|
102
|
+ </td>
|
|
103
|
+ <td width="100" v-if="gatherSetting.change_nurse ==1">
|
|
104
|
+ <span v-if="(getBloodAccessOption(item.dialysis_prescription.blood_access)).indexOf('导管')!=-1">1</span>
|
|
105
|
+ <span v-if="(getBloodAccessOption(item.dialysis_prescription.blood_access)).indexOf('导管')==-1">0</span>
|
|
106
|
+ /
|
|
107
|
+ <span v-if="(getBloodAccessOption(item.dialysis_prescription.blood_access)).indexOf('内瘘')==-1">0</span>
|
|
108
|
+ <span v-if="(getBloodAccessOption(item.dialysis_prescription.blood_access)).indexOf('内瘘')!=-1">1</span>
|
|
109
|
+ </td>
|
|
110
|
+ <td width="100" v-if="gatherSetting.anticoagulant==1">
|
|
111
|
+ <span>{{getAnticoagualnt(item.dialysis_prescription.anticoagulant)}}</span>
|
|
112
|
+ <span v-if="item.dialysis_prescription.anticoagulant_shouji > 0">({{item.dialysis_prescription.anticoagulant_shouji}})</span>
|
|
113
|
+ <span v-if="item.dialysis_prescription.anticoagulant_weichi > 0">({{item.dialysis_prescription.anticoagulant_weichi}})</span>
|
|
114
|
+ <span v-if="item.dialysis_prescription.anticoagulant_zongliang > 0">({{item.dialysis_prescription.anticoagulant_zongliang}})</span>
|
|
115
|
+ </td>
|
|
116
|
+ <td width="200" v-if="gatherSetting.tube==1">
|
|
117
|
+ <span v-if="getBloodAccessOption(item.dialysis_prescription.blood_access).indexOf('导管')!==-1">1</span>
|
|
118
|
+ </td>
|
|
119
|
+ <td width="100" v-if="gatherSetting.kalium==1">
|
|
120
|
+ <span v-if="item.dialysis_prescription.kalium>0">{{item.dialysis_prescription.kalium}}</span>
|
|
121
|
+ </td>
|
|
122
|
+ <td width="100" v-if="gatherSetting.calcium==1">
|
|
123
|
+ <span v-if="item.dialysis_prescription.calcium>0">{{item.dialysis_prescription.calcium}}</span>
|
|
124
|
+ </td>
|
|
125
|
+ <td width="100" v-if="gatherSetting.cuhong == 1">
|
|
126
|
+ {{ item.advice_spc }}
|
|
127
|
+ </td>
|
|
128
|
+ <td width="100" v-if="gatherSetting.zuoka == 1">
|
|
129
|
+ {{ item.advice_spc_one }}
|
|
130
|
+ </td>
|
|
131
|
+ <td width="100" v-if="gatherSetting.niaojimei == 1">
|
|
132
|
+ {{ item.advice_spc_two }}
|
|
133
|
+ </td>
|
|
134
|
+ <td width="100" v-if="gatherSetting.putaosuangai == 1">
|
|
135
|
+ {{ item.advice_spc_three }}
|
|
136
|
+ </td>
|
|
137
|
+
|
|
138
|
+ </tr>
|
|
139
|
+ </tbody>
|
|
140
|
+ </table>
|
|
141
|
+
|
|
142
|
+ </div>
|
|
143
|
+ </div>
|
|
144
|
+ </div>
|
|
145
|
+ </div>
|
|
146
|
+ </div>
|
|
147
|
+ </template>
|
|
148
|
+
|
|
149
|
+ <script>
|
|
150
|
+ import { getDialysisGatherList } from '@/api/dialysis'
|
|
151
|
+ import { parseTime } from '@/utils'
|
|
152
|
+ import { uParseTime } from '@/utils/tools'
|
|
153
|
+ import BreadCrumb from '@/xt_pages/components/bread-crumb'
|
|
154
|
+ import print from 'print-js'
|
|
155
|
+ import { getDataConfig } from '@/utils/data'
|
|
156
|
+ export default {
|
|
157
|
+ name: 'SchedulePrint',
|
|
158
|
+ data() {
|
|
159
|
+ return {
|
|
160
|
+ crumbs: [
|
|
161
|
+ { path: false, name: '排班管理' },
|
|
162
|
+ { path: false, name: '透析汇总打印' }
|
|
163
|
+ ],
|
|
164
|
+ td_1_width: '8%',
|
|
165
|
+ td_2_width: '8%',
|
|
166
|
+ td_3_width: '64%',
|
|
167
|
+ td_4_width: '20%',
|
|
168
|
+ month: 1,
|
|
169
|
+ begin_day: 1,
|
|
170
|
+ total:[],
|
|
171
|
+ list:[],
|
|
172
|
+ schedule_date:"",
|
|
173
|
+ schedule_type:0,
|
|
174
|
+ partition_type:0,
|
|
175
|
+ keywords:"",
|
|
176
|
+ loading:false,
|
|
177
|
+ tableData:[],
|
|
178
|
+ numberList:[],
|
|
179
|
+ partitionArr:[],
|
|
180
|
+ his_config:{},
|
|
181
|
+ typeList:[],
|
|
182
|
+ rowList:[],
|
|
183
|
+ dialysate_formulation:[],
|
|
184
|
+ body_fluid_option:[],
|
|
185
|
+ displace_liqui_part_option:[],
|
|
186
|
+ blood_access_option:[],
|
|
187
|
+ hemodialysisPipelinesOptions:[],
|
|
188
|
+ tableList:[],
|
|
189
|
+ list:[],
|
|
190
|
+ dialysisSett:{},
|
|
191
|
+ total_one:0,
|
|
192
|
+ total_two:0,
|
|
193
|
+ total_three:0,
|
|
194
|
+ org_id:'',
|
|
195
|
+ gatherSetting:{}
|
|
196
|
+ }
|
|
197
|
+ },
|
|
198
|
+ components: {
|
|
199
|
+ BreadCrumb
|
|
200
|
+ },
|
|
201
|
+ created() {
|
|
202
|
+ this.org_id = this.$store.getters.xt_user.org.id
|
|
203
|
+ this.displace_liqui_part_option = this.$store.getters.displace_liqui
|
|
204
|
+ this.blood_access_option = getDataConfig('hemodialysis', 'vascular_access_desc')
|
|
205
|
+ this.getlist()
|
|
206
|
+ },
|
|
207
|
+ methods: {
|
|
208
|
+ getlist(){
|
|
209
|
+ var params = {
|
|
210
|
+ schedule_date:this.$route.query.schedule_date,
|
|
211
|
+ schedule_type:this.$route.query.schedule_type,
|
|
212
|
+ partition_id:this.$route.query.partion_id,
|
|
213
|
+ page:this.$route.query.page,
|
|
214
|
+ limit:500,
|
|
215
|
+ ids:this.$route.query.ids,
|
|
216
|
+ }
|
|
217
|
+ console.log("params",params)
|
|
218
|
+ getDialysisGatherList(params).then(response=>{
|
|
219
|
+ if(response.data.state == 1){
|
|
220
|
+ this.gatherSetting = response.data.data.gatherSetting
|
|
221
|
+ var list = response.data.data.list
|
|
222
|
+ if(list!=null &&list.length>0){
|
|
223
|
+ for(let i=0;i<list.length;i++){
|
|
224
|
+ list[i].sort = 0
|
|
225
|
+ list[i].sort = list[i].device_number.sort
|
|
226
|
+ }
|
|
227
|
+
|
|
228
|
+ }
|
|
229
|
+ list.sort(this.compare('sort'))
|
|
230
|
+
|
|
231
|
+ var total_one =0
|
|
232
|
+ var total_two=0
|
|
233
|
+ var total_three =0
|
|
234
|
+ console.log("listoowowowwoww",list)
|
|
235
|
+ for(let i=0;i<list.length;i++){
|
|
236
|
+ list[i].advice_spc =""
|
|
237
|
+ list[i].advice_spc_one =""
|
|
238
|
+ list[i].advice_spc_two =""
|
|
239
|
+ list[i].advice_spc_three = ""
|
|
240
|
+ for(let j=0;j<list[i].advice.length;j++){
|
|
241
|
+ if((list[i].advice[j].advice_name).indexOf("促红")!=-1){
|
|
242
|
+ list[i].advice_spc+= (list[i].advice[j].single_dose + list[i].advice[j].single_dose_unit+"/"+ list[i].advice[j].prescribing_number_unit)+","
|
|
243
|
+ }
|
|
244
|
+
|
|
245
|
+ if((list[i].advice[j].advice_name).indexOf("左卡")!=-1){
|
|
246
|
+ list[i].advice_spc_one+= (list[i].advice[j].single_dose + list[i].advice[j].single_dose_unit+"/"+ list[i].advice[j].prescribing_number_unit)+","
|
|
247
|
+ }
|
|
248
|
+
|
|
249
|
+ if((list[i].advice[j].advice_name).indexOf("尿激酶")!=-1){
|
|
250
|
+ list[i].advice_spc_two+= (list[i].advice[j].single_dose + list[i].advice[j].single_dose_unit+"/"+ list[i].advice[j].prescribing_number_unit)+","
|
|
251
|
+ }
|
|
252
|
+
|
|
253
|
+ if((list[i].advice[j].advice_name).indexOf("葡萄糖酸钙")!=-1){
|
|
254
|
+ list[i].advice_spc_three+= (list[i].advice[j].single_dose + list[i].advice[j].single_dose_unit+"/"+ list[i].advice[j].prescribing_number_unit)+","
|
|
255
|
+ }
|
|
256
|
+
|
|
257
|
+ }
|
|
258
|
+ }
|
|
259
|
+ this.list = list
|
|
260
|
+
|
|
261
|
+ }
|
|
262
|
+ })
|
|
263
|
+ },
|
|
264
|
+ getTimeOne(val) {
|
|
265
|
+ if(val == ""){
|
|
266
|
+ return ""
|
|
267
|
+ }else {
|
|
268
|
+ return uParseTime(val, '{y}-{m}-{d}')
|
|
269
|
+ }
|
|
270
|
+ },
|
|
271
|
+ printAction: function() {
|
|
272
|
+ if(this.org_id != 10490 && this.org_id != 0){
|
|
273
|
+ const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 0px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 0px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
|
|
274
|
+ printJS({
|
|
275
|
+ printable: 'print_content',
|
|
276
|
+ type: 'html',
|
|
277
|
+ documentTitle: ' ',
|
|
278
|
+ style: style,
|
|
279
|
+ scanStyles: false
|
|
280
|
+ })
|
|
281
|
+ }else{
|
|
282
|
+ // const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 0px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 0px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
|
|
283
|
+ const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 20px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 18px; padding: 10px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
|
|
284
|
+ printJS({
|
|
285
|
+ printable: 'print_content',
|
|
286
|
+ type: 'html',
|
|
287
|
+ documentTitle: ' ',
|
|
288
|
+ style: style,
|
|
289
|
+ scanStyles: false
|
|
290
|
+ })
|
|
291
|
+ }
|
|
292
|
+
|
|
293
|
+ },
|
|
294
|
+ getAnticoagualnt(id){
|
|
295
|
+ var name = ""
|
|
296
|
+ if(id == 1){
|
|
297
|
+ name = "无肝素"
|
|
298
|
+ }
|
|
299
|
+ if(id == 2){
|
|
300
|
+ name = "普通肝素"
|
|
301
|
+ }
|
|
302
|
+ if(id == 3){
|
|
303
|
+ name ="低分子肝素"
|
|
304
|
+ }
|
|
305
|
+ if(id == 4){
|
|
306
|
+ name ="阿加曲班"
|
|
307
|
+ }
|
|
308
|
+ if(id == 5){
|
|
309
|
+ name ="枸橼酸钠"
|
|
310
|
+ }
|
|
311
|
+ if(id == 6){
|
|
312
|
+ name ="低分子肝素钙"
|
|
313
|
+ }
|
|
314
|
+ if(id == 7){
|
|
315
|
+ name ="低分子肝素钠"
|
|
316
|
+ }
|
|
317
|
+ if(id == 8){
|
|
318
|
+ name ="依诺肝素"
|
|
319
|
+ }
|
|
320
|
+ if(id == 9){
|
|
321
|
+ name ="达肝素"
|
|
322
|
+ }
|
|
323
|
+ if(id == 10){
|
|
324
|
+ name ="体外抗凝"
|
|
325
|
+ }
|
|
326
|
+ if(id == 11){
|
|
327
|
+ name ="那屈肝素"
|
|
328
|
+ }
|
|
329
|
+ if(id == 12){
|
|
330
|
+ name ="无抗凝剂"
|
|
331
|
+ }
|
|
332
|
+ if(id == 13){
|
|
333
|
+ name ="那屈肝素钙"
|
|
334
|
+ }
|
|
335
|
+ return name
|
|
336
|
+ },
|
|
337
|
+ getBloodAccessOption(id){
|
|
338
|
+ var name = ""
|
|
339
|
+ for(let i=0;i<this.blood_access_option.length;i++){
|
|
340
|
+ if(id == this.blood_access_option[i].id){
|
|
341
|
+ name = this.blood_access_option[i].name
|
|
342
|
+ }
|
|
343
|
+ }
|
|
344
|
+ return name
|
|
345
|
+ },
|
|
346
|
+ getDisplaceLiquiPart(id){
|
|
347
|
+ var name = ""
|
|
348
|
+ for(let i=0;i<this.displace_liqui_part_option.length;i++){
|
|
349
|
+ if(id == this.displace_liqui_part_option[i].id){
|
|
350
|
+ name = this.displace_liqui_part_option[i].name
|
|
351
|
+ }
|
|
352
|
+ }
|
|
353
|
+ return name
|
|
354
|
+ },
|
|
355
|
+ compare(p) { //这是比较函数
|
|
356
|
+ return function (m, n) {
|
|
357
|
+ var a = m[p];
|
|
358
|
+ var b = n[p];
|
|
359
|
+ return a - b; //升序
|
|
360
|
+ }
|
|
361
|
+ },
|
|
362
|
+
|
|
363
|
+ }
|
|
364
|
+ }
|
|
365
|
+ </script>
|
|
366
|
+
|
|
367
|
+ <style rel="stylesheet/scss" lang="scss" scoped>
|
|
368
|
+ .print_main_content {
|
|
369
|
+ background-color: white;
|
|
370
|
+ width: 960px;
|
|
371
|
+ margin: 0 auto;
|
|
372
|
+ padding: 0 0 20px 0;
|
|
373
|
+
|
|
374
|
+ .order_title_panl {
|
|
375
|
+ text-align: center;
|
|
376
|
+
|
|
377
|
+ .main_title {
|
|
378
|
+ font-size: 18px;
|
|
379
|
+ line-height: 40px;
|
|
380
|
+ font-weight: 500;
|
|
381
|
+ }
|
|
382
|
+
|
|
383
|
+ }
|
|
384
|
+ .table_panel {
|
|
385
|
+
|
|
386
|
+ .table {
|
|
387
|
+ width: 100%;
|
|
388
|
+ border: 1px solid;
|
|
389
|
+ border-collapse: collapse;
|
|
390
|
+ padding: 2px;
|
|
391
|
+
|
|
392
|
+ thead {
|
|
393
|
+
|
|
394
|
+ tr {
|
|
395
|
+
|
|
396
|
+ td {
|
|
397
|
+ border: 1px solid;
|
|
398
|
+ text-align: center;
|
|
399
|
+ font-size: 20px;
|
|
400
|
+ padding: 15px 5px;
|
|
401
|
+ }
|
|
402
|
+
|
|
403
|
+ }
|
|
404
|
+ }
|
|
405
|
+ tbody {
|
|
406
|
+
|
|
407
|
+ tr {
|
|
408
|
+
|
|
409
|
+ td {
|
|
410
|
+ border: 1px solid;
|
|
411
|
+ text-align: center;
|
|
412
|
+ font-size: 18px;
|
|
413
|
+ padding: 10px 5px;
|
|
414
|
+
|
|
415
|
+ .proj {
|
|
416
|
+ padding: 5px 0;
|
|
417
|
+ text-align: left;
|
|
418
|
+
|
|
419
|
+ .proj_title {
|
|
420
|
+ font-size: 16px;
|
|
421
|
+ font-weight: 500;
|
|
422
|
+ line-height: 25px;
|
|
423
|
+ }
|
|
424
|
+
|
|
425
|
+ .proj_item {
|
|
426
|
+ font-size: 15px;
|
|
427
|
+ line-height: 20px;
|
|
428
|
+
|
|
429
|
+ .zone_name {
|
|
430
|
+ font-weight: 500;
|
|
431
|
+ }
|
|
432
|
+
|
|
433
|
+ }
|
|
434
|
+ }
|
|
435
|
+ }
|
|
436
|
+ }
|
|
437
|
+ }
|
|
438
|
+ }
|
|
439
|
+ }
|
|
440
|
+ }
|
|
441
|
+ </style>
|
|
442
|
+
|
|
443
|
+
|