ElementUI table 单元格编辑合并

你存在的意义,诠释了我仓促青春里的爱情。

我的需求:

  • 看公司的低代码平台有使用这种方式,所以想研究研究,后期项目里使用。

我需要解决的问题:

  • 如何通过数据对ElementUI表格组件中单元格的编辑功能进行处理,输入框和表格样式如何切换
  • 表格合并是如何处理的

我是这样做的:

  • 百度寻找解决办法,向公司前端大佬请教

你存在的意义,诠释了我仓促青春里的爱情。


单行视图手动双击切换

通过双击表格实现编辑的表格的切换。
在这里插入图片描述
在这里插入图片描述

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
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<!-- import CSS -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- import Vue before Element -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- import JavaScript -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
</head>

<body style="display: flex;justify-content: center;width: 100%;">
<div id="app">
<el-card>
<el-table :data="tableData" style="width: 100%" :row-class-name="tableRowClassName"
@cell-dblclick="editdbClick">
<el-table-column prop="date" label="日期" width="180">
<template slot-scope="scope">
<el-select v-show="!showEdit[scope.$index]" popper-class="role-option" v-model="scope.row.date"
placeholder="请选择" size="small" @change="dateHandleChange">
<el-option v-for="item in optionData" :key="item.name" :label="item.name"
:value="item.value"></el-option>
</el-select>
<span style="line-height: 32px;"
v-show="showEdit[scope.$index]">{{ optionDataf(scope.row.date)}} </span>
</template>
</el-table-column>
<el-table-column prop="name" label="姓名" width="180">
<template slot-scope="scope">
<el-select v-show="!showEdit[scope.$index] && scope.row.date != '2' " popper-class="role-option"
v-model="scope.row.name" placeholder="请选择" size="small">
<el-option v-for="item in optionName" :key="item.name" :label="item.name"
:value="item.value"></el-option>
</el-select>
<span style="line-height: 32px;"
v-show="showEdit[scope.$index]">{{optionNamef(scope.row.name) }} </span>
</template>
</el-table-column>
<el-table-column prop="addr" width="180" label="地址">
<template slot-scope="scope">
<el-select v-show="!showEdit[scope.$index]" popper-class="role-option" v-model="scope.row.addr"
placeholder="请选择" size="small">
<el-option v-for="item in optionsAddr(scope.row)" :key="item.name" :label="item.name"
:value="item.value"></el-option>
</el-select>
<span style="line-height: 32px;"
v-show="showEdit[scope.$index]">{{optionsAddrf(scope.row.addr) }}
</span>
</template>
</el-table-column>
<el-table-column label="操作" width="100" header-align="right">
<template slot-scope="scope">
<div style="display: flex;justify-content: space-between;">
<el-link icon="el-icon-plus" size="mini" type="primary"
@click="handleAdd(scope.$index, scope.row)" :underline="false"
style="font-size: 14px;margin-left: 40px"></el-link>
<el-link icon="el-icon-delete" size="mini" @click="handleDelete(scope.$index, scope.row)"
type="danger" :underline="false"></el-link>
</div>
</template>
</el-table-column>
</el-table>
</el-card>
</div>
</body>
<script>
/**
* @description: 双击行视图手动切换,通过双击表格实现编辑的表格的切换
* @author: Liruilong
*/
new Vue({
el: '#app',
data() {
return {
optionData: [{ value: "1", name: "2016-05-03" }, { value: "2", name: "2016-05-04" }, { value: "3", name: "2016-05-05" }],
optionName: [{ value: "1", name: " 王小虎" }, { value: "2", name: "王小龙" }, { value: "3", name: "王小狗" }],
optionAddr: [{ value: "1", name: "北凉" }, { value: "2", name: "西北道" }, { value: "3", name: "泰安城" }],
tableData: [{
date: '1',
name: '1',
addr: '1',
}],
optionAddrMapper: new Map(),
date: '',
name: '',
address: '',
showEdit: [false],
}
},
created() {

},
mounted() {
// 模拟ajax初始化数据集
this.optionAddrMapper.set("1", [{ value: "1", name: "北凉" }, { value: "2", name: "西北道" }, { value: "3", name: "泰安城" }]);
},
methods: {
optionDataf(id) {
let name = id;
this.optionData.forEach((element) => {

if (element.value == id) {
name = element.name;
}
});
return name;
},
optionNamef(id) {
let name = id;
this.optionName.forEach((element) => {
if (element.value == id) {
name = element.name;
}
});
return name;
},
optionsAddrf(id) {
let name = id;
if (this.optionAddrMapper) {
this.optionAddrMapper.forEach((value, key) => {
value.forEach((e) => {
if (e.value == id) {
name = e.name;
}
})
});
} else {
this.optionAddr.forEach(e => {
if (e.value == id) {
name = e.name;
}
});
}
return name;
},
editdbClick(row, column, cell, event) {

if ((row.date && row.name && row.addr) || (row.date && row.addr)) {
this.$set(this.showEdit, row.index, !this.showEdit[row.index])
}

},
// openShow(index){
// this.showEdit.forEach( (e) =>{
// if(e != index){
// this.$set(this.showEdit, e, false)
// }

// })
// },
saveClick(row, column, cell, event) {
},
optionsAddr(row) {
return this.optionAddrMapper.get(row.date);
},
//联动处理//模拟ajax调用接口获取数据.日期选择会联动地址
dateHandleChange(val) {
// 模拟根据日期得到地址的数据集 这里写ajax ,必须是同步的请求。
this.optionAddrMapper.set("1", [{ value: "1", name: "北凉" }, { value: "2", name: "西北道" }, { value: "3", name: "泰安城" }]);
this.optionAddrMapper.set("2", [{ value: "9", name: "西域" }, { value: "8", name: "苗疆" }, { value: "7", name: "剑气长城" }]);
this.optionAddrMapper.set("3", [{ value: "10", name: "圣贤林" }, { value: "11", name: "青冥天下" }, { value: "12", name: "藕花福地" }]);
},
// 添加操作。默认会保存当前行的数据,并添加一条新数据
handleAdd(index, row) {
let data = this.tableData[this.tableData.length - 1];
if (((row.date && row.name && row.addr) || (row.date && row.addr)) && ((data.date && data.name && data.addr) || (data.date && data.addr))) {
this.$set(this.showEdit, row.index, true)
this.tableData.push({
date: '',
name: '',
addr: ''
});
this.$set(this.showEdit, row.index + 1, false)
}
},
handleDelete(index, row) {
debugger
if (index > 0) {
this.tableData.splice(index, 1);
}
},
tableRowClassName({ row, rowIndex }) {
row.index = rowIndex;
if ((rowIndex + 1) % 2 === 1) {
return 'warning-row';
} else {
return 'success-row';
}
return '';
}
},
props: {},
computed: {},

created() {

},
watch: {},
filters: {

},

})
</script>
<style>
.el-table .warning-row {
background: oldlace;
}

.el-table .success-row {
background: #f0f9eb;
}
</style>

</html>

单机视图自动切换

即只留一条要编辑的操作。这个和之前的原理不一样,通过样式控制。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-FUeHuF7B-1605237228003)(imgclip_8.png "imgclip_8.png")]
在这里插入图片描述

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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- import CSS -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- import Vue before Element -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- import JavaScript -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
</head>


<body style="display: flex;justify-content: center;width: 100%;margin-top: 20px;">
<div id="app">
<el-card>
<!-- 关键代码 highlight-current-row -->
<el-table :data="tableData" style="width: 100%" class="tb-edit" highlight-current-row @row-click="handleCurrentChange" :row-class-name="tableRowClassName" >
<el-table-column prop="date" label="日期" width="180">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.date" placeholder="请输入内容"
@change="handleEdit(scope.$index, scope.row)"></el-input> <span>{{scope.row.date}}</span>
</template>
</el-table-column>
<el-table-column prop="name" label="姓名" width="180">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.name" placeholder="请输入内容"
@change="handleEdit(scope.$index, scope.row)"></el-input> <span>{{scope.row.name}}</span>
</template>
</el-table-column>
<el-table-column prop="addr" width="180" label="地址">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.addr" placeholder="请输入内容"
@change="handleEdit(scope.$index, scope.row)"></el-input> <span>{{scope.row.addr}}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="100" header-align="right">
<template slot-scope="scope">
<div style="display: flex;justify-content: space-between;">
<el-link icon="el-icon-plus" size="mini" type="primary"
@click="handleAdd(scope.$index, scope.row)" :underline="false"
style="font-size: 14px;margin-left: 40px"></el-link>
<el-link icon="el-icon-delete" size="mini" @click="handleDelete(scope.$index, scope.row)"
type="danger" :underline="false"></el-link>
</div>
</template>
</el-table-column>
</el-table>
</el-card>
</div>
</body>
<script>
/**
* @description: 单机视图自动切换,即只留一条要编辑的操作。这个和之前的原理不一样,通过样式控制。
* @author: Liruilong
*/
new Vue({
el: '#app',
data() {
return {
tableData: [{
date: '2016-05-02',
name: '王小虎',
addr: '北凉',
}, {
date: '2016-05-04',
name: '王小狗',
addr: '西北道'
}, {
date: '2016-05-04',
name: '王小狗',
addr: '西北道'
}, {
date: '2016-05-04',
name: '王小狗',
addr: '西北道'
}]
}
},
mounted() {

},
methods: {
handleCurrentChange(row, event, column) {
console.log(row, event, column, event.currentTarget)
console.log("根据 Element Table @row-click=handleCurrentChange 事件,当该行点击的时候会动态添加一个 .current-row 的class属性,然后在 css 中进行 display 控制就行了。")
},
handleAdd(index, row) {
this.tableData.push({
date: '',
name: '',
addr: ''
});
},
handleDelete(index, row) {
if (index > 0) {
this.tableData.splice(index, 1);
}
},
tableRowClassName({ row, rowIndex }) {
row.index = rowIndex;
if ((rowIndex + 1) % 2 === 1) {
return 'warning-row';
} else {
return 'success-row';
}
return '';
}
},

props: {},
computed: {},

created() {

},
watch: {},
})
</script>
<style>
.el-table .warning-row {
background: oldlace;
}

.el-table .success-row {
background: #f0f9eb;
}
.tb-edit .el-input {
display: none
}

.tb-edit .current-row .el-input {
display: block
}

.tb-edit .current-row .el-input+span {
display: none
}
</style>

</html>

行列单元格合并,悬浮编辑,根据填写数据动态变色

在这里插入图片描述
在这里插入图片描述

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
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<!-- import CSS -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- import Vue before Element -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- import JavaScript -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
</head>


<body >
<div id="app">
<el-card>
<template>
<el-table :data="tableData" size="mini" class="tb-edit" style="width: 100%;" max-height="800" height="800"
:row-style="{height:'16px'}" :cell-style="{padding:'2px'}" :row-class-name="tableRowClassName"
@row-click="handleCurrentChange" @cell-mouse-enter="editdbClick" @cell-mouse-leave="editdbClick"
:span-method="arraySpanMethod"
>
<el-table-column label="质量评价表" header-align="center">
<el-table-column :label="name">
<el-table-column prop="serialNumber" label="序号" width="40"></el-table-column>

<el-table-column label="类别" header-align="center">
<el-table-column prop="category1" width="100" align="center">
<template slot="header" slot-scope="scope">
</template>
</el-table-column>
<el-table-column prop="category2" width="100" align="center">
<template slot="header" slot-scope="scope">
</template>
</el-table-column>
</el-table-column>
<el-table-column label="标准分" header-align="center">
<el-table-column prop="standardScore" label="100" width="100" align="center">
<template slot="header" slot-scope="scope">100 分</template>
<template slot-scope="scope">
<span>{{ scope.row.standardScore }} </span>
</template>
</el-table-column>
</el-table-column>
<el-table-column label="打分" header-align="center">
<el-table-column prop="score" :label="number" width="130" align="center">
<template slot="header" slot-scope="scope"> {{ number+"" }} 分 </template>
<template slot-scope="scope">
<el-input-number style="width: 100px" controls-position="right" ref="input" :controls="false"
v-show="showEdit[scope.$index]" v-model="scope.row.score" size="mini"
@change="handleChange(scope.row)" :min="0" :max="scope.row.standardScore" label="打分">
</el-input-number>
<span v-show="!showEdit[scope.$index]">{{scope.row.score}}</span>
</template>
</el-table-column>
</el-table-column>
<el-table-column prop="reviewMain" label="加/扣分原因说明" header-align="center"></el-table-column>
</el-table-column>
</el-table-column>
</el-table>
</template>
</el-card>
</div>
</body>
<script>
/**
* @description: 单机视图自动切换,即只留一条要编辑的操作。这个和之前的原理不一样,通过样式控制。
* @author: Liruilong
*/
var vm = new Vue({
el: "#app",
data: {
name: "工程名称:",
number: '',
showEdit: [],
tableData:[{
"id": "00bf58ee70414dca8761",
"serialNumber": "一",
"category1": "设计资料",
"category2": "设计资料",
"reviewMain": "1.设计资料齐全,设计报告、图纸、概算满足设计深度及标准化要求",
"standardScore": 10,
"sortNumber": 1,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"score": null
},
{
"id": "ed7aeaa4c40541a0bcde",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "1、柱上变压器(箱变、环网柜、配电室)选址是否合理,周围地形地貌、道路交通情况、建筑物及规划因素考虑周全,充分考虑出线条件",
"standardScore": 2,
"sortNumber": 2,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 40,
"monthValue": 12,
"nano": 0,
"second": 37,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 40,
"monthValue": 12,
"nano": 0,
"second": 37,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "6ef643f0ab30426490b9",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "2、主接线配置是否合理,无功补偿配置方案是否合理,供电区域谐波情况是否分析清楚",
"standardScore": 1,
"sortNumber": 3,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 40,
"monthValue": 12,
"nano": 0,
"second": 51,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 40,
"monthValue": 12,
"nano": 0,
"second": 51,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "ad8b094a11a54518937d",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "3.设备选型、导体选择是否合理(规格及型号等)\n",
"standardScore": 2,
"sortNumber": 4,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 41,
"monthValue": 12,
"nano": 0,
"second": 15,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 41,
"monthValue": 12,
"nano": 0,
"second": 15,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "8c5af871ebca4e52b4e6",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "4.电气总平面布置是否合理",
"standardScore": 1,
"sortNumber": 5,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 41,
"monthValue": 12,
"nano": 0,
"second": 34,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 41,
"monthValue": 12,
"nano": 0,
"second": 34,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "dd19f4c18c1c45d3aa6a",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "5.防雷接地是否描述清楚,方案是否合理",
"standardScore": 1,
"sortNumber": 6,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 41,
"monthValue": 12,
"nano": 0,
"second": 50,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 41,
"monthValue": 12,
"nano": 0,
"second": 50,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "971dd8e1890340ce93a9",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "6.配电二次设备的布置、保护装置的选用及方案是否合理性",
"standardScore": 1,
"sortNumber": 7,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 15,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 15,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "60d5e9a5f5af49c780fe",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "7.是否采用典型设计、通用设备,如不采用,是否有专题论述",
"standardScore": 1,
"sortNumber": 8,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 23,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 23,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "4341610f21ce407db3e9",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "8.10kV线路接入系统是否合理,线路路径描述是否清晰,采用电缆的必要性是否充分,改造线路存在问题分析是否详实,必要性是否充分\n",
"standardScore": 2,
"sortNumber": 9,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 35,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 35,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "da710c9c61cb4cfe8d0f",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "9.10kV架空线路气象条件、导线选择、柱上设备、杆塔和基础型式、绝缘配合、防雷与接地、交叉跨越、走廊清理内容是否完整,方案是否合理\n",
"standardScore": 2,
"sortNumber": 10,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 59,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 42,
"monthValue": 12,
"nano": 0,
"second": 59,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "0234913c5e8b41668f16",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "10.10kV电缆线路的环境条件、电缆及附件选型、开关设施布置(明确开关站、环网柜、分支箱、分线箱、电表等设备的数量、(进出线)规模、设备配置、保护配置)、电缆敷设方式、电缆通道、横断面及纵断面设计、电缆工作井设计等内容是否完整,论述是否正确,方案是否合理\n",
"standardScore": 4,
"sortNumber": 11,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 13,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 13,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "26421ded4df440dcb189",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "11.低压线路的路径选择是否合理,改造线路的路径描述是否清晰,存在的问题描述是否提供依据\n",
"standardScore": 2,
"sortNumber": 12,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 25,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 25,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "fb49c80235a745ca934a",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "12.低压架空线路气象条件、导线选择、柱上设备、杆塔和基础型式、绝缘配合、防雷与接地、交叉跨越、走廊清理内容是否完整,方案是否合理\n",
"standardScore": 2,
"sortNumber": 13,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 39,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 39,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "72575eccfc8b4389b136",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "配电及低压部分",
"reviewMain": "13.低压电缆线路的环境条件、电缆及附件选型、开关设施布置(明确开关站、环网柜、分支箱、分线箱、电表等设备的数量、(进出线)规模、设备配置、保护配置)、电缆敷设方式、电缆通道、横断面及纵断面设计、电缆工作井设计等内容是否完整,论述是否正确,方案是否合理\n",
"standardScore": 4,
"sortNumber": 14,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 53,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 43,
"monthValue": 12,
"nano": 0,
"second": 53,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "7447e2e92faa4c25a815",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "1.路径描述清晰(改造或者新建),包括线路出线间隔、走向、地质、水文、行政区、地形比例、重要交叉跨越等,对于电缆线路,还应增加采用电缆通道建设的必要性和可行性\n",
"standardScore": 3,
"sortNumber": 15,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 44,
"monthValue": 12,
"nano": 0,
"second": 19,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 44,
"monthValue": 12,
"nano": 0,
"second": 19,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "7e17e37c22cf4b618ec0",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "2.架空线路方案气象条件切合实际\n",
"standardScore": 1,
"sortNumber": 16,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 44,
"monthValue": 12,
"nano": 0,
"second": 51,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 44,
"monthValue": 12,
"nano": 0,
"second": 51,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "6038938ab4e74637a8df",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "3.导线选择充分结合线路、网架结构及负荷发展需求\n",
"standardScore": 2,
"sortNumber": 17,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 4,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 4,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "89e3b65ca12848409839",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "4.柱上开关设备配置和设备选型合理\n",
"standardScore": 2,
"sortNumber": 18,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 21,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 21,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "a973328f7751412da758",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "5.杆塔和基础选型合理\n",
"standardScore": 2,
"sortNumber": 19,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 30,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 30,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "47c1af18057542ff92c1",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "6.绝缘配合、防雷与接地方案合理,内容详尽\n",
"standardScore": 1,
"sortNumber": 20,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 15,
"minute": 45,
"monthValue": 12,
"nano": 0,
"second": 39,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": "1111",
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 3,
"monthValue": 12,
"nano": 0,
"second": 56,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "4cbebbe5b82644be9cd4",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "7.交叉跨越方案合理,走廊通道清理内容详尽\n",
"standardScore": 1,
"sortNumber": 21,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 3,
"monthValue": 12,
"nano": 0,
"second": 47,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 3,
"monthValue": 12,
"nano": 0,
"second": 47,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "689df639813c4d38918c",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "8.电缆线路环境条件描述清晰、详尽\n",
"standardScore": 3,
"sortNumber": 22,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 4,
"monthValue": 12,
"nano": 0,
"second": 17,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": "1111",
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 4,
"monthValue": 12,
"nano": 0,
"second": 40,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "bfecab1664404a758d62",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "9.电缆及附件选型充分考虑线路、网架结构及负荷发展需求\n",
"standardScore": 2,
"sortNumber": 23,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 4,
"monthValue": 12,
"nano": 0,
"second": 29,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": "1111",
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 4,
"monthValue": 12,
"nano": 0,
"second": 49,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "316f5e4d0660484f9791",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "10.开关设施配置原则和设备选型合理,涉及开关站、环网柜应提供站址选择、方案对比等内容,提供主接线、平面图等满足深度要求的图纸\n",
"standardScore": 2,
"sortNumber": 24,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 4,
"monthValue": 12,
"nano": 0,
"second": 58,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 4,
"monthValue": 12,
"nano": 0,
"second": 58,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "fdd12754e0bb48bf9f00",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "11.电缆敷设方式合理,通道描述清晰\n",
"standardScore": 2,
"sortNumber": 25,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 6,
"monthValue": 12,
"nano": 0,
"second": 21,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 6,
"monthValue": 12,
"nano": 0,
"second": 21,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "baf6846640e34870b8ca",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "12.横断面及纵断面设计方案合理\n",
"standardScore": 1,
"sortNumber": 26,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 6,
"monthValue": 12,
"nano": 0,
"second": 32,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 6,
"monthValue": 12,
"nano": 0,
"second": 32,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "239af8709d2d47f8a224",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "13.电缆工作井建设必要性充分,尺寸、数量、地点描述清晰,提供电缆井盖承载能力并结合工程实际校验\n",
"standardScore": 1,
"sortNumber": 27,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"createTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 6,
"monthValue": 12,
"nano": 0,
"second": 53,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"updateUser": null,
"updateTime": {
"month": "DECEMBER",
"year": 2020,
"dayOfMonth": 1,
"hour": 16,
"minute": 6,
"monthValue": 12,
"nano": 0,
"second": 53,
"dayOfWeek": "TUESDAY",
"dayOfYear": 336,
"chronology": {
"id": "ISO",
"calendarType": "iso8601"
}
},
"score": null
}, {
"id": "07ce43d177cc44609aaf",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "14.必要时提供路径协议,且确保协议有效\n",
"standardScore": 1,
"sortNumber": 28,
"extend1": null,
"extend2": null,
"extend3": null,
"score": null
}, {
"id": "0fde1bbe53a34f1ca9a1",
"serialNumber": "二",
"category1": "技术方案部分",
"category2": "线路部分",
"reviewMain": "15.是否应用通用设计、通用设备,不应用时是否有专题论述\n",
"standardScore": 1,
"sortNumber": 29,
"extend1": null,
"extend2": null,
"extend3": null,
"score": null
}, {
"id": "1a4226cae58c46e08941",
"serialNumber": "三",
"category1": "投资概算",
"category2": "投资概算",
"reviewMain": "1.资料完整性:设计深度,内容、附表等是否满足要求\n",
"standardScore": 3,
"sortNumber": 30,
"extend1": null,
"extend2": null,
"extend3": null,
"score": null
}, {
"id": "27cf50e95ea44a6e8524",
"serialNumber": "三",
"category1": "投资概算",
"category2": "投资概算",
"reviewMain": "2.概算编制的规范性:编制原则、取费标准是否执行现行文件规定\n\n",
"standardScore": 3,
"sortNumber": 31,
"extend1": null,
"extend2": null,
"extend3": null,
"createUser": "1111",
"score": null
},],

dialogTableVisible: false,
iframeQuestionListUrl: "",
clo1Merge: '',
},
methods: {
init() {
var _this = this;
// $.ajax({ });
},

handleChange(row) {
let num = 0;
this.tableData.forEach((e) => {
if (e.score) {
num += e.score;
}
});
this.number = num;
const id = row.id;
let score = '';
},
handleCurrentChange(row, event, column) {
// console.log(row, event, column, event.currentTarget)
},
handleEdit(index, row) {
// console.log(index, row);
},
tableRowClassName({ row, rowIndex }) {
row.index = rowIndex;
if (row.score && row.standardScore > row.score) {
return 'warning-row';
} else if (row.standardScore == row.score) {
return 'success-row';
} else {
return 'error-row';
}
},
setTable(data, columnIndex) {
// 行合并标识
let spanOneArr = [];
// 列合并标识
let spanTwoArr = [];
let concatOne = 0;
let concatTwo = 0;
if (data) {
data.forEach((item, index) => {
if (index === 0) {
spanOneArr.push(1);
spanTwoArr.push(1);
} else {
if (columnIndex === 0 && item.serialNumber === data[index - 1].serialNumber) { // 第一列需合并相同内容的判断条件
spanOneArr[concatOne] += 1;
spanOneArr.push(0);
spanTwoArr.push(0);
} else if (columnIndex === 1 && item.category1 === data[index - 1].category1) {
spanOneArr[concatOne] += 1;
spanOneArr.push(0);
spanTwoArr.push(0);
} else if (columnIndex === 2 && item.category2 === data[index - 1].category2) {
spanOneArr[concatOne] += 1;
spanOneArr.push(0);
spanTwoArr.push(0);
} else {
spanOneArr.push(1);
spanTwoArr.push(1);
concatOne = index;
concatTwo = index;
}
}
});
}
return {
one: spanOneArr,
two: spanTwoArr
};
},
setCell(row, columnIndex, _row) {
if (row.category2 === row.category1 && columnIndex === 1) {
return 2;
} else if (row.category2 === row.category1 && columnIndex === 2) {
return 0;
} else {
return _row > 0 ? 1 : 0;
}
},
arraySpanMethod({ row, column, rowIndex, columnIndex }) {
let td = this.setTable(this.tableData, columnIndex);
const _row = (td.one)[rowIndex];
const _col = this.setCell(row, columnIndex, _row);

return {
rowspan: _row,
colspan: _col
};
},
editdbClick(row, column, cell, event) {
if (column.property === "score") {
this.$nextTick(() => {
this.$refs.input.focus()
});
this.showEdit.forEach((e, index) => {
this.$set(this.showEdit, index, false);
})
this.$set(this.showEdit, row.index, !this.showEdit[row.index]);
}


},
},
mounted() {

},
created() {
this.init();
},

})
;
</script>
<style>
.el-dialog__body {
padding: 0px;
}

/* .el-input-number__decrease{
display: none;
}
.el-input-number__increase{
display: none;
}*/
.el-table .warning-row {
background: rgba(253, 245, 230, 0.63);
}

.el-table .success-row {
background: rgba(240, 249, 235, 0.64);
}

.el-table .error-row {}

.el-table__body tr:hover>td {
background-color: rgba(64, 158, 255, 0.15) !important;
}
</style>

</html>
发布于

2021-04-19

更新于

2023-06-21

许可协议

评论
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×