zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
<div>
    <div class="ibox">
        <div class="ibox-title">
            <h5>
                <vc:i18n name="查询条件" namespace="flowchartManage"></vc:i18n>
            </h5>
            <div class="ibox-tools" style="top:10px;">
                <button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
                    v-on:click="_moreCondition()">
                    {{flowchartFee.moreCondition == true?'隐藏':'更多'}}
                </button>
            </div>
        </div>
        <div class="ibox-content">
            <div class="row">
                <div class="col-sm-2">
                    <div class="form-group input-group">
                        <input type="text" :placeholder="vc.i18n('请输入统计年份','flowchartManage')"
                            v-model="flowchartFee.conditions.endYear" class=" form-control">
                    </div>
                </div>
                <div class="col-sm-2">
                    <div class="form-group input-group">
                        <input type="text" :placeholder="vc.i18n('请选择取数日期','flowchartManage')"
                            v-model="flowchartFee.conditions.endDate" class=" form-control endDate">
                    </div>
                </div>
                <div class="col-sm-2">
                    <button type="button" class="btn btn-primary btn-md" v-on:click="_queryMethod()">
                        <i class="fa fa-search"></i>
                        <vc:i18n name="查询" namespace="flowchartManage"></vc:i18n>
                    </button>
                    <button type="button" class="btn btn-primary btn-md" v-on:click="_resetMethod()">
                        <i class="fa fa-repeat"></i>
                        <vc:i18n name="重置" namespace="flowchartManage"></vc:i18n>
                    </button>
 
                </div>
                <!-- <div class="col-sm-6">
                    <button type="button" class="btn btn-primary btn-md" style="float: right;"
                        v-on:click="_reloadMethod()">
                        <vc:i18n name="手动刷数" namespace="flowchartManage"></vc:i18n>
                    </button>
                </div> -->
            </div>
            <div class="row" v-show="flowchartFee.moreCondition == true">
                <div class="col-sm-2">
                    <div class="form-group input-group">
                        <input type="text" :placeholder="vc.i18n('请填写业主名称','flowchartManage')"
                            v-model.trim="flowchartFee.conditions.ownerName" class=" form-control">
                    </div>
                </div>
                <div class="col-sm-2">
                    <div class="form-group">
                        <input type="text" :placeholder="vc.i18n('请填写业主手机号','flowchartManage')"
                            class="form-control form-control-md" v-model.trim="flowchartFee.conditions.link">
                    </div>
                </div>
                <div class="col-sm-2" v-if="flowchartFee.communitys.length > 1">
                    <select class="form-control-md form-control input-s-sm inline"
                        v-model="flowchartFee.conditions.communityId" @change="_changCommunity()">
                        <option disabled selected value="">{{vc.i18n('请选择小区','reportFeeSummary')}}</option>
                        <option v-for="(item, index) in flowchartFee.communitys" :key="index"
                            v-bind:value="item.communityId">{{item.name}}
                        </option>
                    </select>
                </div>
            </div>
        </div>
    </div>
 
    <div class="white-bg padding-lg">
        <div class="margin-top">
            <div>
                <div class="text-right">
                    <button type="button" class="btn btn-primary btn-sm"
                        v-on:click="_exportflowchartManageOwnerExcel()">
                        <i class="fa fa-plus"></i>
                        <vc:i18n name="导出" namespace="flowchartManageOwner"></vc:i18n>
                    </button>
                </div>
                <div class="margin-top">
                    <div class="hc-table-div table-scroll" :style="{'width':_computeTableDivWidth(),'height':_computeTableDivHeight()}">
                        <table class="table table-bordered middle-bordered" data-page-size="15"
                            style="vertical-align: inherit;">
                            <thead>
                                <tr>
                                    <th rowspan="3" class="text-center">
                                        <vc:i18n name="类别" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th rowspan="2" colspan="2" class="text-center">
                                        <vc:i18n name="名称" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="3" class="text-center">
                                        <vc:i18n name="当年应收款项" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th rowspan="2" class="text-center">
                                        <vc:i18n name="当年收缴率" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th rowspan="2" class="text-center">
                                        <vc:i18n name="折扣" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th rowspan="2" v-for="year in flowchartFee.yearArr2" :key="year.year"
                                        class="text-center">{{ year }}年实收</th>
                                    <th colspan="4" class="text-center" v-if="flowchartFee.yearArr2.length > 0">{{ flowchartFee.yearArr2 [flowchartFee.yearArr2.length - 1] + 1 }}年实收</th>
                                    <th rowspan="2" v-for="month in 12" :key="month" class="text-center"  v-if="flowchartFee.yearArr2.length > 0">
                                        {{ flowchartFee.yearArr2 [flowchartFee.yearArr2.length - 1] + 1  }}年{{ month }}月</th>
                                </tr>
                                <tr>
                                    <th class="text-center">
                                        <vc:i18n name="合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th class="text-center">
                                        <vc:i18n name="每月费用" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th class="text-center">
                                        <vc:i18n name="应收月份数" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th class="text-center">
                                        <vc:i18n name="预算" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th class="text-center">
                                        <vc:i18n name="实收/实付" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th class="text-center">
                                        <vc:i18n name="折扣" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th class="text-center">
                                        <vc:i18n name="欠款" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                </tr>
                                <tr>
                                    <th colspan="2" class="text-center">
                                        <vc:i18n name="收入合计(白单流水)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[0] && flowchartFee.fees[0].length > 0 && flowchartFee.fees[0][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[0][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
 
                                <!-- 物业费 -->
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length * 2 + 7" class="text-center">
                                        <vc:i18n name="物业费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="2" class="text-center">
                                        <vc:i18n name="物业费+代收合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[1] && flowchartFee.fees[1].length > 0 && flowchartFee.fees[1][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[1][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th colspan="2" class="text-center">
                                        <vc:i18n name="物业费合计(1+2)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[2] && flowchartFee.fees[2].length > 0 && flowchartFee.fees[2][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[2][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th colspan="2" class="text-center">
                                        <vc:i18n name="物业费代收合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[3] && flowchartFee.fees[3].length > 0 && flowchartFee.fees[3][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[3][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="1" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="住宅物业费合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[4] && flowchartFee.fees[4].length > 0 && flowchartFee.fees[4][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[4][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[4] && flowchartFee.fees[5].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[5]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
 
                                <tr>
                                    <th class="text-center">
                                        <vc:i18n name="1-1" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="住宅物业费代收合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[6] && flowchartFee.fees[6].length > 0 && flowchartFee.fees[6][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[6][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="2" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="商铺物业费合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[7] && flowchartFee.fees[7].length > 0 && flowchartFee.fees[7][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[7][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[8] && flowchartFee.fees[8].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[8]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th class="text-center">
                                        <vc:i18n name="2-1" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="商铺物业费代收合计" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[9] && flowchartFee.fees[9].length > 0 && flowchartFee.fees[9][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[9][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
 
                                <!-- 停车费 -->
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length * 5 + 6" class="text-center">
                                        <vc:i18n name="停车费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="2" class="text-center">
                                        <vc:i18n name="停车费合计(3+…+7)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[10] && flowchartFee.fees[10].length > 0 && flowchartFee.fees[10][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[10][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="3" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="地面停车费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[11] && flowchartFee.fees[11].length > 0 && flowchartFee.fees[11][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[11][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[12] && flowchartFee.fees[12].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[12]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="4" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="地下停车费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[13] && flowchartFee.fees[13].length > 0 && flowchartFee.fees[13][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[13][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[14] && flowchartFee.fees[14].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[14]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="5" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="小业主产权车辆管理费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[15] && flowchartFee.fees[15].length > 0 && flowchartFee.fees[15][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[15][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[16] && flowchartFee.fees[16].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[16]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="6" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="业主产权过道停车费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[17] && flowchartFee.fees[17].length > 0 && flowchartFee.fees[17][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[17][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[18] && flowchartFee.fees[18].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[18]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="7" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="临时停车费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[19] && flowchartFee.fees[19].length > 0 && flowchartFee.fees[19][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[19][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[20] && flowchartFee.fees[20].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[20]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <!-- 其他收入 -->
                                <tr>
                                    <th class="text-center">
                                        <vc:i18n name="其他收入" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="2" class="text-center">
                                        <vc:i18n name="其他类合计(8+…+22)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[21] && flowchartFee.fees[21].length > 0 && flowchartFee.fees[21][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[21][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <!-- 租金场地收入 -->
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + flowchartFee.yearArr.length + 2"
                                        class="text-center">
                                        <vc:i18n name="租金场地收入" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="8" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        租金收入(地下室房屋出租、管理用</br>房出租、门面房出租等)
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[22] && flowchartFee.fees[22].length > 0 && flowchartFee.fees[22][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[22][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[23] && flowchartFee.fees[23].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[23]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="13" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        场地使用费(活动场地、电信机房、智</br>能柜、售卖机、净水机、宣传栏等)
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[24] && flowchartFee.fees[24].length > 0 && flowchartFee.fees[24][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[24][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[25] && flowchartFee.fees[25].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[25]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
 
                                <!-- 广告类收入 -->
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length * 4 + 5" class="text-center">
                                        <vc:i18n name="广告类收入" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="9" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="电梯广告(业委会)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[26] && flowchartFee.fees[26].length > 0 && flowchartFee.fees[26][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[26][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[27] && flowchartFee.fees[27].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[27]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="10" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="电梯广告(联讯)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[28] && flowchartFee.fees[28].length > 0 && flowchartFee.fees[28][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[28][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[29] && flowchartFee.fees[29].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[29]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="11" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        其他广告(广告栏/牌/灯箱、道闸</br>广告、人行门禁/人行通道广告等)
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[30] && flowchartFee.fees[30].length > 0 && flowchartFee.fees[30][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[30][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[31] && flowchartFee.fees[31].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[31]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="12" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="快递柜" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[32] && flowchartFee.fees[32].length > 0 && flowchartFee.fees[32][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[32][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[33] && flowchartFee.fees[33].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[33]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <!-- 其他 -->
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length * 9 + 13" class="text-center">
                                        <vc:i18n name="其他" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="14" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="非机动车管理费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[34] && flowchartFee.fees[34].length > 0 && flowchartFee.fees[34][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[34][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[35] && flowchartFee.fees[35].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[35]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="15" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        电费及管理费(电瓶车冲电费、新能</br>源车冲电费等)
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[36] && flowchartFee.fees[36].length > 0 && flowchartFee.fees[36][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[36][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[37] && flowchartFee.fees[37].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[37]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="16" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="代收水费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[38] && flowchartFee.fees[38].length > 0 && flowchartFee.fees[38][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[38][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[39] && flowchartFee.fees[39].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[39]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="17" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="维修收入" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[40] && flowchartFee.fees[40].length > 0 && flowchartFee.fees[40][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[40][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[41] && flowchartFee.fees[41].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[41]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="18" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="垃圾清运费" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[42] && flowchartFee.fees[42].length > 0 && flowchartFee.fees[42][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[42][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[43] && flowchartFee.fees[43].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[43]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th :rowspan="flowchartFee.yearArr.length + 1" class="text-center">
                                        <vc:i18n name="19" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="各类押金(装修保证押金等)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[44] && flowchartFee.fees[44].length > 0 && flowchartFee.fees[44][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[44][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr v-for="(item, index) in flowchartFee.yearArr">
                                    <th colspan="1" class="text-center">
                                        {{ item }}年
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[45] && flowchartFee.fees[45].some(v => v.curYear == item)">
                                        <template v-for="(v, i) in flowchartFee.fees[45]" :key="i">
                                            <template v-if="v.curYear == item">
                                                <th colspan="1" class="text-center" v-for="(num, indexNum) in v.report"
                                                    :key="indexNum">
                                                    {{ num }}
                                                </th>
                                            </template>
                                        </template>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th rowspan="4" class="text-center">
                                        <vc:i18n name="23" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="2025年维修基金收入(汇总)" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[50] && flowchartFee.fees[50].length > 0 && flowchartFee.fees[50][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[50][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
                                </tr>
                                <tr>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="2025年工程部维修基金" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[51] && flowchartFee.fees[51].length > 0 && flowchartFee.fees[51][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[51][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
 
                                </tr>
                                <tr>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="2025年电梯部维修基金" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[52] && flowchartFee.fees[52].length > 0 && flowchartFee.fees[52][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[52][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
 
                                </tr>
                                <tr>
                                    <th colspan="1" class="text-center">
                                        <vc:i18n name="2025年小区维修基金" namespace="flowchartManageOwner"></vc:i18n>
                                    </th>
                                    <template
                                        v-if="flowchartFee.fees[53] && flowchartFee.fees[53].length > 0 && flowchartFee.fees[53][0].report">
                                        <th colspan="1" class="text-center"
                                            v-for="(num, indexNum) in flowchartFee.fees[53][0].report" :key="indexNum">
                                            {{ num }}
                                        </th>
                                    </template>
                                    <template v-else>
                                        <th colspan="1" class="text-center" v-for="month in flowchartFee.reportLength"
                                            :key="month">0</th>
                                    </template>
 
                                </tr>
                            </thead>
                        </table>
                    </div>
                </div>
            </div>
            <!-- <div class="row margin-top-xs">
                <div class="col-sm-12 float-right">
                    <vc:create namespace="flowchartManageOwner" path="frame/paginationPlus"></vc:create>
                </div>
            </div> -->
        </div>
    </div>
</div>