|
@@ -5,10 +5,10 @@
|
5
|
5
|
</div>
|
6
|
6
|
<div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
|
7
|
7
|
<div class="mainLeft">
|
8
|
|
- <div class="mainCell" style="justify-content: space-between;">
|
9
|
|
- <p >未收费:<span style="color: red">{{cal_one}}</span>人</p>
|
10
|
|
- <p>已收费:<span style="color: red">{{cal_two}}</span>人</p>
|
11
|
|
- <p>已退费:<span style="color: red">{{cal_three}}</span>人</p>
|
|
8
|
+ <div class="mainCell" style="justify-content: space-between;">
|
|
9
|
+ <p>未收费:<span style="color: red">{{cal_one}}</span>人</p>
|
|
10
|
+ <p>已收费:<span style="color: red">{{cal_two}}</span>人</p>
|
|
11
|
+ <p>已退费:<span style="color: red">{{cal_three}}</span>人</p>
|
12
|
12
|
</div>
|
13
|
13
|
<div class="mainCell">
|
14
|
14
|
<el-radio-group v-model="radio" @change="changeRadio">
|
|
@@ -210,10 +210,11 @@
|
210
|
210
|
</div>
|
211
|
211
|
</div>
|
212
|
212
|
</div>
|
213
|
|
- <additionalCharges ref='additionalCharges' @click="addCharges" :addtions_charge="addtions_charge"></additionalCharges>
|
214
|
|
-
|
215
|
|
- <register-dialog></register-dialog>
|
|
213
|
+ <additionalCharges ref='additionalCharges' @click="addCharges"
|
|
214
|
+ :addtions_charge="addtions_charge"></additionalCharges>
|
216
|
215
|
|
|
216
|
+ <register-dialog ref='register' v-on:confirm="confirm" v-on:cancel="cancel"></register-dialog>
|
|
217
|
+ <charge-dialog ref='charge' v-on:confirm="chargeConfirm" v-on:cancel="chargeCancel"></charge-dialog>
|
217
|
218
|
<el-dialog
|
218
|
219
|
class="centerDialog"
|
219
|
220
|
width="900px"
|
|
@@ -232,14 +233,16 @@
|
232
|
233
|
import medicalInsuranceRefund from './components/medicalInsuranceRefund'
|
233
|
234
|
import prescriptionTable from './components/prescriptionTable'
|
234
|
235
|
import additionalCharges from './components/additionalCharges'
|
235
|
|
- import { getPatientInformation, getPatientList } from '@/api/project/project'
|
236
|
|
- import { getPatientInfo, getSchedulePatientList, register, upload,Refund } from '@/api/his/his'
|
|
236
|
+ import {getPatientInformation, getPatientList} from '@/api/project/project'
|
|
237
|
+ import {getPatientInfo, getSchedulePatientList, Refund, register, upload} from '@/api/his/his'
|
237
|
238
|
import RegisterDialog from "./components/registerDialog";
|
238
|
239
|
import treatPrint from './treatPrint'
|
|
240
|
+ import ChargeDialog from "./components/chargeDialog";
|
239
|
241
|
|
240
|
242
|
const moment = require('moment')
|
241
|
243
|
export default {
|
242
|
244
|
components: {
|
|
245
|
+ ChargeDialog,
|
243
|
246
|
RegisterDialog,
|
244
|
247
|
BreadCrumb,
|
245
|
248
|
noCharge,
|
|
@@ -253,13 +256,13 @@
|
253
|
256
|
data() {
|
254
|
257
|
return {
|
255
|
258
|
crumbs: [
|
256
|
|
- { path: false, name: '门诊收费' },
|
257
|
|
- { path: false, name: '门诊收费管理' }
|
|
259
|
+ {path: false, name: '门诊收费'},
|
|
260
|
+ {path: false, name: '门诊收费管理'}
|
258
|
261
|
],
|
259
|
|
- current_index:0,
|
260
|
|
- cal_one:'',
|
261
|
|
- cal_two:'',
|
262
|
|
- cal_three:'',
|
|
262
|
+ current_index: 0,
|
|
263
|
+ cal_one: '',
|
|
264
|
+ cal_two: '',
|
|
265
|
+ cal_three: '',
|
263
|
266
|
tableHeight: '',
|
264
|
267
|
fullHeight: document.documentElement.clientHeight,
|
265
|
268
|
activeName: 'first',
|
|
@@ -281,7 +284,7 @@
|
281
|
284
|
name: '杨美英',
|
282
|
285
|
mdtrt_id: '1709946'
|
283
|
286
|
}],
|
284
|
|
- patientInfo: { id: 0 },
|
|
287
|
+ patientInfo: {id: 0},
|
285
|
288
|
doctor: {},
|
286
|
289
|
total: 0,
|
287
|
290
|
state: '未收费',
|
|
@@ -291,11 +294,11 @@
|
291
|
294
|
start_time: moment().locale('zh-cn').format('YYYY-MM-DD'),
|
292
|
295
|
patient_id: 0,
|
293
|
296
|
prescription_id: 0,
|
294
|
|
- all_table_data:[],
|
295
|
|
- order:{},
|
296
|
|
- addtions_charge:[],
|
297
|
|
- treatVisible:false,
|
298
|
|
- paramsObj:{}
|
|
297
|
+ all_table_data: [],
|
|
298
|
+ order: {},
|
|
299
|
+ addtions_charge: [],
|
|
300
|
+ treatVisible: false,
|
|
301
|
+ paramsObj: {}
|
299
|
302
|
}
|
300
|
303
|
},
|
301
|
304
|
created() {
|
|
@@ -316,6 +319,53 @@
|
316
|
319
|
this.getPatientList()
|
317
|
320
|
},
|
318
|
321
|
methods: {
|
|
322
|
+ chargeConfirm(form){
|
|
323
|
+ form['id'] = this.patientInfo.id
|
|
324
|
+ form['record_time'] = this.record_date
|
|
325
|
+ this.loadingtwo = true
|
|
326
|
+ upload(form).then(response => {
|
|
327
|
+ if (response.data.state == 0) {
|
|
328
|
+ this.$message.error(response.data.msg)
|
|
329
|
+ this.loadingtwo = false
|
|
330
|
+ return false
|
|
331
|
+ } else {
|
|
332
|
+ this.state = '已收费'
|
|
333
|
+ this.$message({message: '收费成功', type: 'success'})
|
|
334
|
+ this.loadingtwo = false
|
|
335
|
+ this.cal_one = this.cal_one - 1
|
|
336
|
+ this.cal_two = this.cal_two + 1
|
|
337
|
+ this.patientTableData.splice(this.current_index, 1)
|
|
338
|
+ }
|
|
339
|
+ })
|
|
340
|
+
|
|
341
|
+ },chargeCancel(){
|
|
342
|
+ this.$refs.charge.hide()
|
|
343
|
+ },
|
|
344
|
+ confirm(forms) {
|
|
345
|
+ forms['id'] = this.patientInfo.id,
|
|
346
|
+ forms['record_time'] = this.record_date,
|
|
347
|
+ this.loadingone = true
|
|
348
|
+ register(forms).then(response => {
|
|
349
|
+ if (response.data.state == 0) {
|
|
350
|
+ this.$message.error(response.data.msg)
|
|
351
|
+ this.loadingone = false
|
|
352
|
+ this.$refs.register.hide()
|
|
353
|
+ return false
|
|
354
|
+ } else {
|
|
355
|
+ this.$message({message: '挂号成功', type: 'success'})
|
|
356
|
+ this.$refs.register.hide()
|
|
357
|
+ this.loadingone = false
|
|
358
|
+ var his_info = response.data.data.his_info
|
|
359
|
+ this.hisPatientInfo = his_info
|
|
360
|
+ }
|
|
361
|
+ })
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+ }, cancel() {
|
|
365
|
+ this.$refs.register.hide()
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+ },
|
319
|
369
|
addCharges() {
|
320
|
370
|
this.$refs.additionalCharges.show()
|
321
|
371
|
},
|
|
@@ -379,7 +429,7 @@
|
379
|
429
|
price: prescription.project[b].price,
|
380
|
430
|
remark: prescription.project[b].remark,
|
381
|
431
|
medical_code: prescription.project[b].project.medical_code,
|
382
|
|
- unit:prescription.project[b].unit,
|
|
432
|
+ unit: prescription.project[b].unit,
|
383
|
433
|
}
|
384
|
434
|
|
385
|
435
|
tempProject.push(obj)
|
|
@@ -440,14 +490,14 @@
|
440
|
490
|
if (this.curPrescriptions.type == 1) {
|
441
|
491
|
if (this.curPrescriptions.advices != null) {
|
442
|
492
|
for (let a = 0; a < this.curPrescriptions.advices.length; a++) {
|
443
|
|
- total = total + Math.floor((this.curPrescriptions.advices[a].retail_price * this.curPrescriptions.advices[a].prescribing_number)* 100) / 100
|
|
493
|
+ total = total + Math.floor((this.curPrescriptions.advices[a].retail_price * this.curPrescriptions.advices[a].prescribing_number) * 100) / 100
|
444
|
494
|
|
445
|
495
|
}
|
446
|
496
|
}
|
447
|
497
|
} else {
|
448
|
498
|
if (this.curPrescriptions.project != null) {
|
449
|
499
|
for (let b = 0; b < this.curPrescriptions.project.length; b++) {
|
450
|
|
- total = total + Math.floor((this.curPrescriptions.project[b].price * this.curPrescriptions.project[b].total) * 100) / 100
|
|
500
|
+ total = total + Math.floor((this.curPrescriptions.project[b].price * this.curPrescriptions.project[b].total) * 100) / 100
|
451
|
501
|
|
452
|
502
|
}
|
453
|
503
|
}
|
|
@@ -455,7 +505,7 @@
|
455
|
505
|
|
456
|
506
|
if (this.curPrescriptions.addition != null) {
|
457
|
507
|
for (let b = 0; b < this.curPrescriptions.addition.length; b++) {
|
458
|
|
- total = total + Math.floor((this.curPrescriptions.addition[b].price * this.curPrescriptions.addition[b].count) * 100) / 100
|
|
508
|
+ total = total + Math.floor((this.curPrescriptions.addition[b].price * this.curPrescriptions.addition[b].count) * 100) / 100
|
459
|
509
|
}
|
460
|
510
|
}
|
461
|
511
|
return Math.floor(total * 100) / 100
|
|
@@ -493,45 +543,30 @@
|
493
|
543
|
|
494
|
544
|
if (index == 1) {
|
495
|
545
|
|
|
546
|
+
|
496
|
547
|
} else if (index == 2) {
|
497
|
548
|
|
498
|
549
|
this.$router.push('/outpatientDoctorStation/printtwo?record=' + this.record_date)
|
499
|
550
|
|
500
|
551
|
} else if (index == 3) {
|
501
|
552
|
let obj = {
|
502
|
|
- record_date:this.record_date,
|
503
|
|
- patient_id:this.patient_id,
|
504
|
|
- prescription_id:this.prescription_id
|
|
553
|
+ record_date: this.record_date,
|
|
554
|
+ patient_id: this.patient_id,
|
|
555
|
+ prescription_id: this.prescription_id
|
505
|
556
|
}
|
506
|
557
|
this.paramsObj = obj
|
507
|
558
|
this.treatVisible = true
|
508
|
559
|
// this.$router.push('/outpatientCharges/treatPrint?record_date=' + this.record_date + '&patient_id=' + this.patient_id + '&prescription_id=' + this.prescription_id)
|
509
|
560
|
} else if (index == 4) {
|
510
|
561
|
|
511
|
|
- if(this.hisPatientInfo.id == 0){
|
512
|
|
- this.$message({ message: '该患者尚未挂号,请先挂号', type: 'error' })
|
|
562
|
+ if (this.hisPatientInfo.id == 0) {
|
|
563
|
+ this.$message({message: '该患者尚未挂号,请先挂号', type: 'error'})
|
513
|
564
|
return
|
514
|
565
|
}
|
515
|
566
|
|
516
|
|
- let params = {
|
517
|
|
- 'id': this.patientInfo.id,
|
518
|
|
- 'record_time': this.record_date
|
519
|
|
- }
|
520
|
|
- this.loadingtwo = true
|
521
|
|
- upload(params).then(response => {
|
522
|
|
- if (response.data.state == 0) {
|
523
|
|
- this.$message.error(response.data.msg)
|
524
|
|
- this.loadingtwo = false
|
525
|
|
- return false
|
526
|
|
- } else {
|
527
|
|
- this.state = '已收费'
|
528
|
|
- this.$message({ message: '收费成功', type: 'success' })
|
529
|
|
- this.loadingtwo = false
|
530
|
|
- this.cal_one = this.cal_one-1
|
531
|
|
- this.cal_two = this.cal_two + 1
|
532
|
|
- this.patientTableData.splice(this.current_index,1)
|
533
|
|
- }
|
534
|
|
- })
|
|
567
|
+ this.$refs.charge.show(this.getTotal())
|
|
568
|
+
|
|
569
|
+
|
535
|
570
|
|
536
|
571
|
} else if (index == 5) {
|
537
|
572
|
|
|
@@ -550,7 +585,7 @@
|
550
|
585
|
this.loadingtwo = false
|
551
|
586
|
return false
|
552
|
587
|
} else {
|
553
|
|
- this.$message({ message: '退费成功', type: 'success' })
|
|
588
|
+ this.$message({message: '退费成功', type: 'success'})
|
554
|
589
|
this.loadingtwo = false
|
555
|
590
|
|
556
|
591
|
}
|
|
@@ -568,29 +603,9 @@
|
568
|
603
|
return
|
569
|
604
|
}
|
570
|
605
|
|
|
606
|
+ this.$refs.register.show(this.patientInfo)
|
571
|
607
|
|
572
|
608
|
|
573
|
|
-
|
574
|
|
- let params = {
|
575
|
|
- 'id': this.patientInfo.id,
|
576
|
|
- 'record_time': this.record_date
|
577
|
|
- }
|
578
|
|
- this.loadingone = true
|
579
|
|
- register(params).then(response => {
|
580
|
|
- if (response.data.state == 0) {
|
581
|
|
- this.$message.error(response.data.msg)
|
582
|
|
- this.loadingone = false
|
583
|
|
-
|
584
|
|
- return false
|
585
|
|
-
|
586
|
|
- } else {
|
587
|
|
- this.$message({ message: '挂号成功', type: 'success' })
|
588
|
|
-
|
589
|
|
- this.loadingone = false
|
590
|
|
- var his_info = response.data.data.his_info
|
591
|
|
- this.hisPatientInfo = his_info
|
592
|
|
- }
|
593
|
|
- })
|
594
|
609
|
}
|
595
|
610
|
},
|
596
|
611
|
|
|
@@ -621,21 +636,21 @@
|
621
|
636
|
for (let i = 0; i < response.data.data.list.length; i++) {
|
622
|
637
|
// console.log('99999999', response.data.data.list)
|
623
|
638
|
|
624
|
|
- if(response.data.data.list[i].info.prescription_status == 0 || response.data.data.list[i].info.prescription_status == 1 ||response.data.data.list[i].info.prescription_status == 2 ){
|
|
639
|
+ if (response.data.data.list[i].info.prescription_status == 0 || response.data.data.list[i].info.prescription_status == 1 || response.data.data.list[i].info.prescription_status == 2) {
|
625
|
640
|
if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
|
626
|
641
|
one_count = one_count + 1
|
627
|
642
|
this.patientTableData.push(response.data.data.list[i])
|
628
|
643
|
}
|
629
|
644
|
}
|
630
|
645
|
|
631
|
|
- if(response.data.data.list[i].info.prescription_status == 3){
|
|
646
|
+ if (response.data.data.list[i].info.prescription_status == 3) {
|
632
|
647
|
if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
|
633
|
648
|
|
634
|
649
|
two_count = two_count + 1
|
635
|
650
|
}
|
636
|
651
|
}
|
637
|
652
|
|
638
|
|
- if(response.data.data.list[i].info.prescription_status == 4){
|
|
653
|
+ if (response.data.data.list[i].info.prescription_status == 4) {
|
639
|
654
|
if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
|
640
|
655
|
three_count = three_count + 1
|
641
|
656
|
}
|
|
@@ -655,8 +670,8 @@
|
655
|
670
|
case 1:
|
656
|
671
|
this.patientTableData = []
|
657
|
672
|
|
658
|
|
- for (let i = 0; i < this.all_table_data.length; i++){
|
659
|
|
- if(this.all_table_data[i].info.prescription_status == 0 || this.all_table_data[i].info.prescription_status == 1 || this.all_table_data[i].info.prescription_status == 2 ){
|
|
673
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
674
|
+ if (this.all_table_data[i].info.prescription_status == 0 || this.all_table_data[i].info.prescription_status == 1 || this.all_table_data[i].info.prescription_status == 2) {
|
660
|
675
|
this.patientTableData.push(this.all_table_data[i])
|
661
|
676
|
}
|
662
|
677
|
|
|
@@ -664,8 +679,8 @@
|
664
|
679
|
break
|
665
|
680
|
case 2:
|
666
|
681
|
this.patientTableData = []
|
667
|
|
- for (let i = 0; i < this.all_table_data.length; i++){
|
668
|
|
- if(this.all_table_data[i].info.prescription_status == 3){
|
|
682
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
683
|
+ if (this.all_table_data[i].info.prescription_status == 3) {
|
669
|
684
|
this.patientTableData.push(this.all_table_data[i])
|
670
|
685
|
}
|
671
|
686
|
|
|
@@ -675,9 +690,9 @@
|
675
|
690
|
case 3:
|
676
|
691
|
this.patientTableData = []
|
677
|
692
|
|
678
|
|
- for (let i = 0; i < this.all_table_data.length; i++){
|
|
693
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
679
|
694
|
|
680
|
|
- if(this.all_table_data[i].info.prescription_status == 4){
|
|
695
|
+ if (this.all_table_data[i].info.prescription_status == 4) {
|
681
|
696
|
this.patientTableData.push(this.all_table_data[i])
|
682
|
697
|
}
|
683
|
698
|
|
|
@@ -692,17 +707,13 @@
|
692
|
707
|
|
693
|
708
|
this.current_index = 0
|
694
|
709
|
this.$refs.tab.setCurrentRow(this.patientTableData[0])
|
695
|
|
- this.getPatientInformation(this.patientTableData[0].patients.id,"")
|
|
710
|
+ this.getPatientInformation(this.patientTableData[0].patients.id, "")
|
696
|
711
|
|
697
|
712
|
|
698
|
713
|
}
|
699
|
714
|
})
|
700
|
715
|
|
701
|
716
|
|
702
|
|
-
|
703
|
|
-
|
704
|
|
-
|
705
|
|
-
|
706
|
717
|
},
|
707
|
718
|
|
708
|
719
|
//患者列表
|
|
@@ -723,21 +734,21 @@
|
723
|
734
|
for (let i = 0; i < response.data.data.list.length; i++) {
|
724
|
735
|
// console.log('99999999', response.data.data.list)
|
725
|
736
|
|
726
|
|
- if(response.data.data.list[i].info.prescription_status == 0 || response.data.data.list[i].info.prescription_status == 1 ||response.data.data.list[i].info.prescription_status == 2 ){
|
|
737
|
+ if (response.data.data.list[i].info.prescription_status == 0 || response.data.data.list[i].info.prescription_status == 1 || response.data.data.list[i].info.prescription_status == 2) {
|
727
|
738
|
if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
|
728
|
739
|
one_count = one_count + 1
|
729
|
740
|
this.patientTableData.push(response.data.data.list[i])
|
730
|
741
|
}
|
731
|
742
|
}
|
732
|
743
|
|
733
|
|
- if(response.data.data.list[i].info.prescription_status == 3){
|
|
744
|
+ if (response.data.data.list[i].info.prescription_status == 3) {
|
734
|
745
|
if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
|
735
|
746
|
|
736
|
747
|
two_count = two_count + 1
|
737
|
748
|
}
|
738
|
749
|
}
|
739
|
750
|
|
740
|
|
- if(response.data.data.list[i].info.prescription_status == 4){
|
|
751
|
+ if (response.data.data.list[i].info.prescription_status == 4) {
|
741
|
752
|
if (response.data.data.list[i].prescription != null && response.data.data.list[i].prescription.length > 0) {
|
742
|
753
|
three_count = three_count + 1
|
743
|
754
|
}
|
|
@@ -754,7 +765,7 @@
|
754
|
765
|
|
755
|
766
|
this.current_index = 0
|
756
|
767
|
this.$refs.tab.setCurrentRow(this.patientTableData[0])
|
757
|
|
- this.getPatientInformation(this.patientTableData[0].patients.id,"")
|
|
768
|
+ this.getPatientInformation(this.patientTableData[0].patients.id, "")
|
758
|
769
|
|
759
|
770
|
}
|
760
|
771
|
})
|
|
@@ -769,8 +780,8 @@
|
769
|
780
|
this.getPatientInformation(val.patients.id, val.info.batch_number)
|
770
|
781
|
this.patient_id = val.patients.id
|
771
|
782
|
|
772
|
|
- for (let i =0; i < this.patientTableData.length; i++){
|
773
|
|
- if(this.patientTableData[i].patients.id == val.patients.id){
|
|
783
|
+ for (let i = 0; i < this.patientTableData.length; i++) {
|
|
784
|
+ if (this.patientTableData[i].patients.id == val.patients.id) {
|
774
|
785
|
this.current_index = i
|
775
|
786
|
}
|
776
|
787
|
|
|
@@ -779,11 +790,11 @@
|
779
|
790
|
},
|
780
|
791
|
|
781
|
792
|
//获取患者的基本信息
|
782
|
|
- getPatientInformation(id,batch_number) {
|
|
793
|
+ getPatientInformation(id, batch_number) {
|
783
|
794
|
let params = {
|
784
|
795
|
'record_date': this.record_date,
|
785
|
796
|
'patient_id': id,
|
786
|
|
- 'number':batch_number,
|
|
797
|
+ 'number': batch_number,
|
787
|
798
|
}
|
788
|
799
|
getPatientInfo(params).then(response => {
|
789
|
800
|
if (response.data.state == 0) {
|
|
@@ -797,9 +808,9 @@
|
797
|
808
|
this.addtions_charge = response.data.data.addtions_charge
|
798
|
809
|
|
799
|
810
|
this.prescriptions = []
|
800
|
|
- console.log("9991323242r5253535",response.data.data.prescription)
|
|
811
|
+ console.log("9991323242r5253535", response.data.data.prescription)
|
801
|
812
|
this.prescription_id = response.data.data.prescription[0].advices[0].prescription_id
|
802
|
|
- console.log("222222",this.prescription_id)
|
|
813
|
+ console.log("222222", this.prescription_id)
|
803
|
814
|
for (let i = 0; i < response.data.data.prescription.length; i++) {
|
804
|
815
|
var prescription = response.data.data.prescription[i]
|
805
|
816
|
|
|
@@ -857,14 +868,13 @@
|
857
|
868
|
}
|
858
|
869
|
|
859
|
870
|
|
860
|
|
-
|
861
|
871
|
let index = i + 1
|
862
|
872
|
let obj = {
|
863
|
873
|
id: prescription.id,
|
864
|
874
|
name: '处方' + index,
|
865
|
875
|
advices: tempAdvice,
|
866
|
876
|
project: tempProject,
|
867
|
|
- addition:tempAddition,
|
|
877
|
+ addition: tempAddition,
|
868
|
878
|
order_status: response.data.data.prescription[i].order_status,
|
869
|
879
|
type: response.data.data.prescription[i].type
|
870
|
880
|
}
|
|
@@ -896,7 +906,7 @@
|
896
|
906
|
this.tableHeight = tableHeight
|
897
|
907
|
this.timer = true
|
898
|
908
|
let that = this
|
899
|
|
- setTimeout(function() {
|
|
909
|
+ setTimeout(function () {
|
900
|
910
|
that.timer = false
|
901
|
911
|
}, 400)
|
902
|
912
|
}
|
|
@@ -932,7 +942,8 @@
|
932
|
942
|
display: flex;
|
933
|
943
|
align-items: center;
|
934
|
944
|
}
|
935
|
|
- .fixedCell{
|
|
945
|
+
|
|
946
|
+ .fixedCell {
|
936
|
947
|
position: fixed;
|
937
|
948
|
z-index: 99;
|
938
|
949
|
right: 42px;
|
|
@@ -996,13 +1007,16 @@
|
996
|
1007
|
flex-direction: column;
|
997
|
1008
|
position: relative;
|
998
|
1009
|
}
|
999
|
|
- .preTabs{
|
1000
|
|
- height:100%;
|
|
1010
|
+
|
|
1011
|
+ .preTabs {
|
|
1012
|
+ height: 100%;
|
1001
|
1013
|
display: flex;
|
1002
|
1014
|
flex-direction: column;
|
1003
|
|
- .el-tab-pane{
|
1004
|
|
- height:auto !important;
|
1005
|
|
- }
|
|
1015
|
+
|
|
1016
|
+ .el-tab-pane {
|
|
1017
|
+ height: auto !important;
|
|
1018
|
+ }
|
|
1019
|
+
|
1006
|
1020
|
}
|
1007
|
1021
|
|
1008
|
1022
|
.settlementTabs {
|
|
@@ -1070,12 +1084,14 @@
|
1070
|
1084
|
}
|
1071
|
1085
|
|
1072
|
1086
|
}
|
1073
|
|
- .preTabs{
|
1074
|
|
- .el-tabs__content{
|
1075
|
|
- flex: 1;
|
1076
|
|
- overflow-y: auto;
|
1077
|
|
- padding: 5px 0 5px 5px;
|
1078
|
|
- }
|
|
1087
|
+ .preTabs {
|
|
1088
|
+
|
|
1089
|
+ .el-tabs__content {
|
|
1090
|
+ flex: 1;
|
|
1091
|
+ overflow-y: auto;
|
|
1092
|
+ padding: 5px 0 5px 5px;
|
|
1093
|
+ }
|
|
1094
|
+
|
1079
|
1095
|
}
|
1080
|
1096
|
</style>
|
1081
|
1097
|
|