|
@@ -0,0 +1,526 @@
|
|
1
|
+<template>
|
|
2
|
+ <div id="prescriptionPrint">
|
|
3
|
+ <div v-for="(item, index) in advicePrint" :key="index">
|
|
4
|
+ <div
|
|
5
|
+ id="prescription-print"
|
|
6
|
+ class="prescription-print"
|
|
7
|
+ style="page-break-after: always"
|
|
8
|
+ >
|
|
9
|
+ <div class="printTitle" v-if="prescriptions[0].med_type == '1111'">
|
|
10
|
+ {{ orgname }}第一类精神处方笺
|
|
11
|
+ </div>
|
|
12
|
+ <div class="printTitle" v-if="prescriptions[0].med_type == '1112'">
|
|
13
|
+ {{ orgname }}第二类精神处方笺
|
|
14
|
+ </div>
|
|
15
|
+ <div
|
|
16
|
+ class="printTitle"
|
|
17
|
+ v-if="
|
|
18
|
+ prescriptions[0].med_type != '1111' &&
|
|
19
|
+ prescriptions[0].med_type != '1112'
|
|
20
|
+ "
|
|
21
|
+ >
|
|
22
|
+ {{ orgname }}处方笺
|
|
23
|
+ </div>
|
|
24
|
+
|
|
25
|
+ <div class="infoTitle" style="border-bottom:1px solid #000;">
|
|
26
|
+ <p>科室:{{ item.info ? getDepart(item.info.departments) : "" }}</p>
|
|
27
|
+ <p>费别:</p>
|
|
28
|
+ <p>门诊号:{{ hisPatient.number ? hisPatient.number : "" }}</p>
|
|
29
|
+ <p><span>年</span> <span>月</span> <span>日</span></p>
|
|
30
|
+ </div>
|
|
31
|
+
|
|
32
|
+ <div class="infoTitle" style="border-bottom:1px solid #000;">
|
|
33
|
+ <p>姓名:{{ item.patient.name ? item.patient.name : "" }}</p>
|
|
34
|
+ <p>
|
|
35
|
+ 性别:
|
|
36
|
+ <span v-if="item.patient.gender == 1">男</span>
|
|
37
|
+ <span v-if="item.patient.gender == 2">女</span>
|
|
38
|
+ </p>
|
|
39
|
+ <p>年龄:{{ getAge(item.patient) ? getAge(item.patient) : "" }}岁</p>
|
|
40
|
+ <p>电话:</p>
|
|
41
|
+ </div>
|
|
42
|
+ <div class="infoTitle" style="border-bottom:1px solid #000;">
|
|
43
|
+ <p>地址:{{ item.patient.home_address }}</p>
|
|
44
|
+ </div>
|
|
45
|
+ <div class="infoTitle">
|
|
46
|
+ <p>诊断:{{ getDiagnosis(item.info.diagnosis) }}</p>
|
|
47
|
+ </div>
|
|
48
|
+
|
|
49
|
+ <div class="prescriptionBox">
|
|
50
|
+ <div class="Rp">R:</div>
|
|
51
|
+ <div
|
|
52
|
+ class="drugsBox"
|
|
53
|
+ v-for="(it, index) in item.advices"
|
|
54
|
+ :key="index"
|
|
55
|
+ >
|
|
56
|
+ <!-- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.advice_name?it.advice_name:""}} {{it.single_dose}}{{it.single_dose_unit}} × {{it.prescribing_number}}{{it.prescribing_number_unit}}</div> -->
|
|
57
|
+ <div class="drugsOne">
|
|
58
|
+ <span style="font-weight: bold">{{ index + 1 + "." }}</span
|
|
59
|
+ >{{ it.advice_name ? it.advice_name : "" }} <span
|
|
60
|
+ v-if="it.drug.min_unit != it.drug.dose_unit"
|
|
61
|
+ >{{ it.drug.dose }}{{ it.drug.dose_unit }} * </span
|
|
62
|
+ >{{ it.drug.min_number }}{{ it.drug.min_unit }}/{{
|
|
63
|
+ it.drug.max_unit
|
|
64
|
+ }} × {{ it.prescribing_number
|
|
65
|
+ }}{{ it.prescribing_number_unit }}
|
|
66
|
+ </div>
|
|
67
|
+ <div style="margin-left: 100px">
|
|
68
|
+ <span>用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
|
|
69
|
+ > <span
|
|
70
|
+ >{{ it.execution_frequency }} {{
|
|
71
|
+ it.delivery_way
|
|
72
|
+ }} </span
|
|
73
|
+ > <span>{{ it.advice_desc }}</span>
|
|
74
|
+ </div>
|
|
75
|
+ </div>
|
|
76
|
+ <div
|
|
77
|
+ class="drugsBox"
|
|
78
|
+ v-for="(it, i) in item.additionalcharge"
|
|
79
|
+ :key="i"
|
|
80
|
+ >
|
|
81
|
+ <div class="drugsOne">
|
|
82
|
+ {{ it.item_name ? it.item_name : "" }}: {{ it.price }}元/{{
|
|
83
|
+ it.count
|
|
84
|
+ }}次
|
|
85
|
+ </div>
|
|
86
|
+ </div>
|
|
87
|
+
|
|
88
|
+ <div
|
|
89
|
+ class="drugsBox"
|
|
90
|
+ v-for="(it, index) in item.project"
|
|
91
|
+ :key="index"
|
|
92
|
+ >
|
|
93
|
+ <div class="drugsOne">
|
|
94
|
+ <span style="font-weight: bold">{{ index + 1 + "." }}</span
|
|
95
|
+ >{{
|
|
96
|
+ it.type == 2
|
|
97
|
+ ? getProjectName(it.project_id)
|
|
98
|
+ ? getProjectName(it.project_id)
|
|
99
|
+ : ""
|
|
100
|
+ : it.good_info.good_name
|
|
101
|
+ }} {{ it.single_dose
|
|
102
|
+ }}{{ it.single_dose_unit }} × {{ it.count }}{{ unit }}
|
|
103
|
+ </div>
|
|
104
|
+ <div style="margin-left: 100px">
|
|
105
|
+ <span>用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
|
|
106
|
+ > <span>{{ it.delivery_way }}</span
|
|
107
|
+ > <span>{{ it.advice_desc }}</span>
|
|
108
|
+ </div>
|
|
109
|
+ </div>
|
|
110
|
+ <div
|
|
111
|
+ class="drugsBox"
|
|
112
|
+ v-for="(it, i) in item.additionalcharge"
|
|
113
|
+ :key="i"
|
|
114
|
+ >
|
|
115
|
+ <div class="drugsOne">
|
|
116
|
+ {{ it.project_id ? it.project_id : "" }}: {{
|
|
117
|
+ it.price.toFixed(2)
|
|
118
|
+ }}元/{{ it.count }}次
|
|
119
|
+ </div>
|
|
120
|
+ </div>
|
|
121
|
+ <div style="text-align: center">(以下空白)</div>
|
|
122
|
+ </div>
|
|
123
|
+
|
|
124
|
+ <div class="infoTitle"></div>
|
|
125
|
+ <div class="actionBar" v-if="org_id != 10188">
|
|
126
|
+ <div class="actionBar_list">
|
|
127
|
+ 医师:
|
|
128
|
+ <span>{{ item.doctor ? item.doctor : "" }}
|
|
129
|
+ </span>
|
|
130
|
+
|
|
131
|
+ <!-- <p class="actionBar_val" style="border-bottom:3px solid red">
|
|
132
|
+
|
|
133
|
+ </p> -->
|
|
134
|
+ </div>
|
|
135
|
+ <div class="actionBar_list">
|
|
136
|
+ 审核:{{
|
|
137
|
+ getDoctor(item.advices[0].checker)
|
|
138
|
+ ? getDoctor(item.advices[0].checker)
|
|
139
|
+ : ""
|
|
140
|
+ }}
|
|
141
|
+ <!-- <div class="actionBar_val">
|
|
142
|
+
|
|
143
|
+ </div> -->
|
|
144
|
+ </div>
|
|
145
|
+
|
|
146
|
+ <div class="actionBar_list">
|
|
147
|
+ 金额:
|
|
148
|
+ {{
|
|
149
|
+ getTotalOne(item.id).toFixed(2)
|
|
150
|
+ ? getTotalOne(item.id).toFixed(2)
|
|
151
|
+ : 0
|
|
152
|
+ }}
|
|
153
|
+ <!-- <div class="actionBar_val">
|
|
154
|
+
|
|
155
|
+ </div> -->
|
|
156
|
+ </div>
|
|
157
|
+ </div>
|
|
158
|
+ <div class="actionBar">
|
|
159
|
+ <div class="actionBar_list">
|
|
160
|
+ <div>调配:</div>
|
|
161
|
+ <!-- <div class="actionBar_val"></div> -->
|
|
162
|
+ </div>
|
|
163
|
+ <div class="actionBar_list">
|
|
164
|
+ <div>
|
|
165
|
+ 核对:{{
|
|
166
|
+ getDoctor(item.advices[0].checker)
|
|
167
|
+ ? getDoctor(item.advices[0].checker)
|
|
168
|
+ : ""
|
|
169
|
+ }}
|
|
170
|
+ </div>
|
|
171
|
+ <!-- <div class="actionBar_val">
|
|
172
|
+
|
|
173
|
+ </div> -->
|
|
174
|
+ </div>
|
|
175
|
+ <div class="actionBar_list">
|
|
176
|
+ <div>
|
|
177
|
+ 发药:{{
|
|
178
|
+ getDoctor(item.advices[0].execution_staff)
|
|
179
|
+ ? getDoctor(item.advices[0].execution_staff)
|
|
180
|
+ : ""
|
|
181
|
+ }}
|
|
182
|
+ </div>
|
|
183
|
+ <!-- <div class="actionBar_val">
|
|
184
|
+
|
|
185
|
+ </div> -->
|
|
186
|
+ </div>
|
|
187
|
+ </div>
|
|
188
|
+
|
|
189
|
+ <div style="page-break-after: always"></div>
|
|
190
|
+ </div>
|
|
191
|
+ </div>
|
|
192
|
+ </div>
|
|
193
|
+</template>
|
|
194
|
+<script>
|
|
195
|
+import { jsGetAge, uParseTime } from "@/utils/tools";
|
|
196
|
+import {
|
|
197
|
+ getAllDoctorList,
|
|
198
|
+ getPrescriptionPrint,
|
|
199
|
+ getHisPatientDetail,
|
|
200
|
+} from "@/api/project/project";
|
|
201
|
+import { getInitData } from "@/api/his/his";
|
|
202
|
+export default {
|
|
203
|
+ props: {
|
|
204
|
+ patient_id: Number,
|
|
205
|
+ record_date: String,
|
|
206
|
+ prescription_id: Number,
|
|
207
|
+ ids: String,
|
|
208
|
+ },
|
|
209
|
+ data() {
|
|
210
|
+ return {
|
|
211
|
+ doctorList: [],
|
|
212
|
+ advicePrint: {},
|
|
213
|
+ patient: {},
|
|
214
|
+ tableData: [],
|
|
215
|
+ prescriptionInfo: [],
|
|
216
|
+ hisPatient: {},
|
|
217
|
+ department: [],
|
|
218
|
+ prescriptions: [],
|
|
219
|
+ projectList: [],
|
|
220
|
+ orgname: "",
|
|
221
|
+ diagnoses: [],
|
|
222
|
+ org_id: 0,
|
|
223
|
+ };
|
|
224
|
+ },
|
|
225
|
+ methods: {
|
|
226
|
+ getAge(patient) {
|
|
227
|
+ var thisLen = patient.id_card_no.length;
|
|
228
|
+ var birth = "";
|
|
229
|
+ if (thisLen == 15) {
|
|
230
|
+ birth = "19" + patient.id_card_no.substr(6, 6);
|
|
231
|
+ } else {
|
|
232
|
+ birth = patient.id_card_no.substr(6, 8);
|
|
233
|
+ }
|
|
234
|
+ var births =
|
|
235
|
+ birth.substr(0, 4) +
|
|
236
|
+ "-" +
|
|
237
|
+ birth.substr(4, 2) +
|
|
238
|
+ "-" +
|
|
239
|
+ birth.substr(6, 2);
|
|
240
|
+ return jsGetAge(births, "-");
|
|
241
|
+ },
|
|
242
|
+
|
|
243
|
+ getAllDoctorList() {
|
|
244
|
+ getAllDoctorList().then((response) => {
|
|
245
|
+ if (response.data.state == 1) {
|
|
246
|
+ var doctor = response.data.data.doctor;
|
|
247
|
+
|
|
248
|
+ this.doctorList = doctor;
|
|
249
|
+ }
|
|
250
|
+ });
|
|
251
|
+ },
|
|
252
|
+
|
|
253
|
+ getDoctor(id) {
|
|
254
|
+ var name = "";
|
|
255
|
+ for (let i = 0; i < this.doctorList.length; i++) {
|
|
256
|
+ if (id == this.doctorList[i].admin_user_id) {
|
|
257
|
+ name = this.doctorList[i].user_name;
|
|
258
|
+ }
|
|
259
|
+ }
|
|
260
|
+ return name;
|
|
261
|
+ },
|
|
262
|
+ getTime(value, temp) {
|
|
263
|
+ if (value != undefined) {
|
|
264
|
+ return uParseTime(value, temp);
|
|
265
|
+ }
|
|
266
|
+ return "";
|
|
267
|
+ },
|
|
268
|
+ getPrescriptionPrint() {
|
|
269
|
+ var params = {
|
|
270
|
+ // patient_id:this.patient_id,
|
|
271
|
+ // record_date:this.record_date,
|
|
272
|
+ // prescription_id:this.prescription_id,
|
|
273
|
+ patient_id: this.patient_id,
|
|
274
|
+ record_date: this.record_date,
|
|
275
|
+ prescription_id: this.prescription_id,
|
|
276
|
+ ids: this.ids,
|
|
277
|
+ p_type: 2,
|
|
278
|
+ };
|
|
279
|
+ console.log("params", params);
|
|
280
|
+ getPrescriptionPrint(params).then((response) => {
|
|
281
|
+ if (response.data.state == 1) {
|
|
282
|
+ var advicePrint = response.data.data.advicePrint;
|
|
283
|
+ console.log("adviceprint9999", advicePrint);
|
|
284
|
+ this.advicePrint = advicePrint;
|
|
285
|
+ this.prescriptions = advicePrint;
|
|
286
|
+ console.log("处方222222", this.prescriptions);
|
|
287
|
+ var hisPatient = response.data.data.hisPatient;
|
|
288
|
+ console.log("hisPatient", hisPatient);
|
|
289
|
+ this.hisPatient = hisPatient;
|
|
290
|
+ var projectlist = response.data.data.projectlist;
|
|
291
|
+ console.log("所有项目列表", projectlist);
|
|
292
|
+ this.projectList = projectlist;
|
|
293
|
+ }
|
|
294
|
+ });
|
|
295
|
+ },
|
|
296
|
+ getHisPatientDetail() {
|
|
297
|
+ const params = {
|
|
298
|
+ patient_id: this.patient_id,
|
|
299
|
+ };
|
|
300
|
+ getHisPatientDetail(params).then((response) => {
|
|
301
|
+ if (response.data.state == 1) {
|
|
302
|
+ var hisPatient = response.data.data.hisPatient;
|
|
303
|
+ console.log("挂号病人", hisPatient);
|
|
304
|
+ this.hisPatient = hisPatient;
|
|
305
|
+ }
|
|
306
|
+ });
|
|
307
|
+ },
|
|
308
|
+ getInitData() {
|
|
309
|
+ getInitData().then((response) => {
|
|
310
|
+ if (response.data.state == 1) {
|
|
311
|
+ this.department = response.data.data.department;
|
|
312
|
+ this.diagnoses = response.data.data.diagnose;
|
|
313
|
+ console.log("争端", this.diagnoses);
|
|
314
|
+ }
|
|
315
|
+ });
|
|
316
|
+ },
|
|
317
|
+ getDepart(id) {
|
|
318
|
+ var name = "";
|
|
319
|
+ for (let i = 0; i < this.department.length; i++) {
|
|
320
|
+ if (id == this.department[i].id) {
|
|
321
|
+ name = this.department[i].name;
|
|
322
|
+ }
|
|
323
|
+ }
|
|
324
|
+ return name;
|
|
325
|
+ },
|
|
326
|
+ getTotalOne(id) {
|
|
327
|
+ var total = 0;
|
|
328
|
+ var addtotal = 0;
|
|
329
|
+ for (let i = 0; i < this.prescriptions.length; i++) {
|
|
330
|
+ if (id == this.prescriptions[i].id) {
|
|
331
|
+ if (this.prescriptions[i].project != null) {
|
|
332
|
+ for (let a = 0; a < this.prescriptions[i].project.length; a++) {
|
|
333
|
+ total =
|
|
334
|
+ total +
|
|
335
|
+ this.prescriptions[i].project[a].price *
|
|
336
|
+ this.prescriptions[i].project[a].count;
|
|
337
|
+ }
|
|
338
|
+ }
|
|
339
|
+
|
|
340
|
+ if (this.prescriptions[i].additionalcharge != null) {
|
|
341
|
+ for (
|
|
342
|
+ let a = 0;
|
|
343
|
+ a < this.prescriptions[i].additionalcharge.length;
|
|
344
|
+ a++
|
|
345
|
+ ) {
|
|
346
|
+ addtotal =
|
|
347
|
+ addtotal +
|
|
348
|
+ this.prescriptions[i].additionalcharge[a].price *
|
|
349
|
+ this.prescriptions[i].additionalcharge[a].count;
|
|
350
|
+ }
|
|
351
|
+ }
|
|
352
|
+ addtotal = Math.floor(addtotal * 100) / 100;
|
|
353
|
+ }
|
|
354
|
+ }
|
|
355
|
+
|
|
356
|
+ for (let i = 0; i < this.prescriptions.length; i++) {
|
|
357
|
+ if (id == this.prescriptions[i].id) {
|
|
358
|
+ if (this.prescriptions[i].advices != null) {
|
|
359
|
+ for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
|
|
360
|
+ total =
|
|
361
|
+ total +
|
|
362
|
+ this.prescriptions[i].advices[a].price *
|
|
363
|
+ this.prescriptions[i].advices[a].prescribing_number;
|
|
364
|
+ }
|
|
365
|
+ }
|
|
366
|
+
|
|
367
|
+ if (this.prescriptions[i].additionalcharge != null) {
|
|
368
|
+ for (
|
|
369
|
+ let a = 0;
|
|
370
|
+ a < this.prescriptions[i].additionalcharge.length;
|
|
371
|
+ a++
|
|
372
|
+ ) {
|
|
373
|
+ addtotal =
|
|
374
|
+ addtotal +
|
|
375
|
+ this.prescriptions[i].additionalcharge[a].price *
|
|
376
|
+ this.prescriptions[i].additionalcharge[a].count;
|
|
377
|
+ }
|
|
378
|
+ }
|
|
379
|
+ addtotal = Math.floor(addtotal * 100) / 100;
|
|
380
|
+ }
|
|
381
|
+ }
|
|
382
|
+
|
|
383
|
+ return total + addtotal;
|
|
384
|
+ },
|
|
385
|
+
|
|
386
|
+ getProjectName(id) {
|
|
387
|
+ var project_name = "";
|
|
388
|
+ for (let i = 0; i < this.projectList.length; i++) {
|
|
389
|
+ if (id == this.projectList[i].id) {
|
|
390
|
+ project_name = this.projectList[i].project_name;
|
|
391
|
+ }
|
|
392
|
+ }
|
|
393
|
+ return project_name;
|
|
394
|
+ },
|
|
395
|
+
|
|
396
|
+ getDiagnosis(id) {
|
|
397
|
+ var name = "";
|
|
398
|
+ for (let i = 0; i < this.diagnoses.length; i++) {
|
|
399
|
+ if (id == this.diagnoses[i].id) {
|
|
400
|
+ name = this.diagnoses[i].class_name;
|
|
401
|
+ }
|
|
402
|
+ }
|
|
403
|
+ return name;
|
|
404
|
+ },
|
|
405
|
+ },
|
|
406
|
+ created() {
|
|
407
|
+ this.getAllDoctorList();
|
|
408
|
+ this.getInitData();
|
|
409
|
+ this.getPrescriptionPrint();
|
|
410
|
+ this.getHisPatientDetail();
|
|
411
|
+ var xtuser = this.$store.getters.xt_user;
|
|
412
|
+ this.orgname = xtuser.org.org_name;
|
|
413
|
+ this.org_id = xtuser.org.id;
|
|
414
|
+ },
|
|
415
|
+ watch: {
|
|
416
|
+ ids: function (val) {
|
|
417
|
+ this.ids = val;
|
|
418
|
+ this.getPrescriptionPrint();
|
|
419
|
+ },
|
|
420
|
+ },
|
|
421
|
+};
|
|
422
|
+</script>
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+<style lang="scss" scoped>
|
|
426
|
+.prescription-print {
|
|
427
|
+ -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
428
|
+ 0 0 60px rgba(0, 0, 0, 0.06) inset;
|
|
429
|
+ -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
430
|
+ 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
431
|
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
432
|
+ margin-bottom: 20px;
|
|
433
|
+ padding: 20px 10px;
|
|
434
|
+}
|
|
435
|
+.printTitle {
|
|
436
|
+ font-size: 22px;
|
|
437
|
+ text-align: center;
|
|
438
|
+ font-weight: bold;
|
|
439
|
+}
|
|
440
|
+.infoTitle_thin {
|
|
441
|
+ display: flex;
|
|
442
|
+ border-bottom: 2px solid #000;
|
|
443
|
+ margin-top: 10px;
|
|
444
|
+ line-height: 24px;
|
|
445
|
+ padding: 0 10px;
|
|
446
|
+}
|
|
447
|
+.infoTitle_thin p {
|
|
448
|
+ width: 200px;
|
|
449
|
+}
|
|
450
|
+.infoTitle {
|
|
451
|
+ display: flex;
|
|
452
|
+ border-bottom: 2px solid #000;
|
|
453
|
+ margin-top: 10px;
|
|
454
|
+ line-height: 24px;
|
|
455
|
+ padding: 0 10px;
|
|
456
|
+}
|
|
457
|
+.infoTitle p {
|
|
458
|
+ width: 200px;
|
|
459
|
+}
|
|
460
|
+.infoMain {
|
|
461
|
+ display: flex;
|
|
462
|
+ flex-wrap: wrap;
|
|
463
|
+ border-bottom: 2px solid #000;
|
|
464
|
+ padding: 0 10px;
|
|
465
|
+}
|
|
466
|
+.infoMain div {
|
|
467
|
+ width: 50%;
|
|
468
|
+ line-height: 24px;
|
|
469
|
+}
|
|
470
|
+.prescriptionBox {
|
|
471
|
+ padding: 0 10px;
|
|
472
|
+ min-height: 450px;
|
|
473
|
+}
|
|
474
|
+.Rp {
|
|
475
|
+ font-size: 22px;
|
|
476
|
+ font-weight: bold;
|
|
477
|
+}
|
|
478
|
+.drugsBox {
|
|
479
|
+ padding-left: 40px;
|
|
480
|
+ margin-bottom: 10px;
|
|
481
|
+}
|
|
482
|
+.drugsBox div {
|
|
483
|
+ line-height: 20px;
|
|
484
|
+}
|
|
485
|
+.drugsOne {
|
|
486
|
+ line-height: 24px;
|
|
487
|
+}
|
|
488
|
+.drugsOne span {
|
|
489
|
+ margin-right: 20px;
|
|
490
|
+}
|
|
491
|
+.doctorBox {
|
|
492
|
+ display: flex;
|
|
493
|
+ justify-content: space-between;
|
|
494
|
+ padding: 0 10px;
|
|
495
|
+ line-height: 24px;
|
|
496
|
+ border-bottom: 2px solid #000;
|
|
497
|
+}
|
|
498
|
+.actionBar {
|
|
499
|
+ display: flex;
|
|
500
|
+ justify-content: space-between;
|
|
501
|
+ line-height: 24px;
|
|
502
|
+ padding: 0 10px;
|
|
503
|
+ .actionBar_list {
|
|
504
|
+ display: flex;
|
|
505
|
+ width: 120px;
|
|
506
|
+ .actionBar_val {
|
|
507
|
+ width: 100px;
|
|
508
|
+ border-bottom: 2px solid #000;
|
|
509
|
+ text-align: center;
|
|
510
|
+ }
|
|
511
|
+ .title_bar {
|
|
512
|
+ position: relative;
|
|
513
|
+ .val_list {
|
|
514
|
+ position: absolute;
|
|
515
|
+ width: 105px;
|
|
516
|
+ top: 0;
|
|
517
|
+ left: 42px;
|
|
518
|
+ border-bottom: 1px solid #000;
|
|
519
|
+ }
|
|
520
|
+ }
|
|
521
|
+ }
|
|
522
|
+}
|
|
523
|
+.actionBar p {
|
|
524
|
+ width: 150px;
|
|
525
|
+}
|
|
526
|
+</style>
|