cnhis-design-vue 3.0.6 → 3.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/es/big-table/index.js +276 -204
- package/es/button-print/index.css +31 -31
- package/es/drag-layout/index.css +31 -31
- package/es/field-set/index.css +73 -73
- package/es/grid/index.css +73 -73
- package/es/index.css +275 -0
- package/es/index.js +1549 -332
- package/es/select-person/index.css +1319 -0
- package/es/select-person/index.js +13191 -0
- package/package.json +3 -3
- package/packages/big-table/src/BigTable.vue +41 -25
- package/packages/big-table/src/bigTableEmits.ts +2 -1
- package/packages/big-table/src/bigTableProps.ts +1 -1
- package/packages/big-table/src/components/edit-form/edit-date.vue +38 -5
- package/packages/big-table/src/components/edit-form/edit-select.vue +1 -0
- package/packages/big-table/src/hooks/useEdit.ts +35 -4
- package/packages/index.ts +5 -2
- package/packages/select-person/index.ts +11 -0
- package/packages/select-person/src/SelectPerson.vue +1104 -0
- package/packages/select-person/src/search-tree.vue +326 -0
- package/packages/select-person/src/utils/index.js +66 -0
package/es/grid/index.css
CHANGED
|
@@ -506,6 +506,37 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
506
506
|
height: 20px;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
+
.text-over-tooltip-components[data-v-6633a934] {
|
|
510
|
+
display: inline-block;
|
|
511
|
+
max-width: 98%;
|
|
512
|
+
/* 文字超出宽度显示省略号 单行 */
|
|
513
|
+
/* 自定义样式 */
|
|
514
|
+
}
|
|
515
|
+
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] {
|
|
516
|
+
font-size: 14px;
|
|
517
|
+
color: #35393c;
|
|
518
|
+
overflow: hidden;
|
|
519
|
+
text-overflow: ellipsis;
|
|
520
|
+
white-space: nowrap;
|
|
521
|
+
}
|
|
522
|
+
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] i[data-v-6633a934] {
|
|
523
|
+
font-style: normal;
|
|
524
|
+
word-break: keep-all;
|
|
525
|
+
white-space: nowrap;
|
|
526
|
+
}
|
|
527
|
+
.text-over-tooltip-components[data-v-6633a934] .fs20[data-v-6633a934] {
|
|
528
|
+
font-size: 20px;
|
|
529
|
+
font-weight: 600;
|
|
530
|
+
color: green;
|
|
531
|
+
line-height: 22px;
|
|
532
|
+
}
|
|
533
|
+
.text-over-tooltip-components[data-v-6633a934] .fs12[data-v-6633a934] {
|
|
534
|
+
font-size: 12px;
|
|
535
|
+
font-weight: 400;
|
|
536
|
+
color: orange;
|
|
537
|
+
line-height: 14px;
|
|
538
|
+
}
|
|
539
|
+
|
|
509
540
|
.no-data-tip[data-v-4a4b0812] {
|
|
510
541
|
display: -webkit-box;
|
|
511
542
|
display: -webkit-flex;
|
|
@@ -545,37 +576,6 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
545
576
|
margin-top: 6px;
|
|
546
577
|
}
|
|
547
578
|
|
|
548
|
-
.text-over-tooltip-components[data-v-6633a934] {
|
|
549
|
-
display: inline-block;
|
|
550
|
-
max-width: 98%;
|
|
551
|
-
/* 文字超出宽度显示省略号 单行 */
|
|
552
|
-
/* 自定义样式 */
|
|
553
|
-
}
|
|
554
|
-
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] {
|
|
555
|
-
font-size: 14px;
|
|
556
|
-
color: #35393c;
|
|
557
|
-
overflow: hidden;
|
|
558
|
-
text-overflow: ellipsis;
|
|
559
|
-
white-space: nowrap;
|
|
560
|
-
}
|
|
561
|
-
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] i[data-v-6633a934] {
|
|
562
|
-
font-style: normal;
|
|
563
|
-
word-break: keep-all;
|
|
564
|
-
white-space: nowrap;
|
|
565
|
-
}
|
|
566
|
-
.text-over-tooltip-components[data-v-6633a934] .fs20[data-v-6633a934] {
|
|
567
|
-
font-size: 20px;
|
|
568
|
-
font-weight: 600;
|
|
569
|
-
color: green;
|
|
570
|
-
line-height: 22px;
|
|
571
|
-
}
|
|
572
|
-
.text-over-tooltip-components[data-v-6633a934] .fs12[data-v-6633a934] {
|
|
573
|
-
font-size: 12px;
|
|
574
|
-
font-weight: 400;
|
|
575
|
-
color: orange;
|
|
576
|
-
line-height: 14px;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
579
|
|
|
580
580
|
.svg-icon[data-v-d1ad5be8] {
|
|
581
581
|
width: 1em;
|
|
@@ -731,6 +731,48 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
731
731
|
z-index: 2001;
|
|
732
732
|
}
|
|
733
733
|
|
|
734
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] {
|
|
735
|
+
width: 100%;
|
|
736
|
+
margin-bottom: 16px;
|
|
737
|
+
overflow: hidden;
|
|
738
|
+
cursor: pointer;
|
|
739
|
+
color: #2e2e2e;
|
|
740
|
+
}
|
|
741
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] {
|
|
742
|
+
display: -webkit-box;
|
|
743
|
+
display: -webkit-flex;
|
|
744
|
+
display: -ms-flexbox;
|
|
745
|
+
display: flex;
|
|
746
|
+
-webkit-box-pack: center;
|
|
747
|
+
-webkit-justify-content: center;
|
|
748
|
+
-ms-flex-pack: center;
|
|
749
|
+
justify-content: center;
|
|
750
|
+
-webkit-box-align: center;
|
|
751
|
+
-webkit-align-items: center;
|
|
752
|
+
-ms-flex-align: center;
|
|
753
|
+
align-items: center;
|
|
754
|
+
width: 100%;
|
|
755
|
+
height: 60px;
|
|
756
|
+
padding: 0 8px;
|
|
757
|
+
-webkit-box-sizing: border-box;
|
|
758
|
+
box-sizing: border-box;
|
|
759
|
+
margin-bottom: 8px;
|
|
760
|
+
background: #f3f5f8;
|
|
761
|
+
}
|
|
762
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966]-input[data-v-55852966] {
|
|
763
|
+
width: 85%;
|
|
764
|
+
overflow: hidden;
|
|
765
|
+
text-overflow: ellipsis;
|
|
766
|
+
white-space: nowrap;
|
|
767
|
+
cursor: pointer !important;
|
|
768
|
+
}
|
|
769
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"][disabled][data-v-55852966],
|
|
770
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"][disabled][data-v-55852966],
|
|
771
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"].disabled[data-v-55852966],
|
|
772
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"].disabled[data-v-55852966] {
|
|
773
|
+
cursor: pointer !important;
|
|
774
|
+
}
|
|
775
|
+
|
|
734
776
|
.DragFormRightItem[data-v-2d9603cc] {
|
|
735
777
|
position: relative;
|
|
736
778
|
}
|
|
@@ -802,48 +844,6 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
802
844
|
color: red;
|
|
803
845
|
}
|
|
804
846
|
|
|
805
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] {
|
|
806
|
-
width: 100%;
|
|
807
|
-
margin-bottom: 16px;
|
|
808
|
-
overflow: hidden;
|
|
809
|
-
cursor: pointer;
|
|
810
|
-
color: #2e2e2e;
|
|
811
|
-
}
|
|
812
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] {
|
|
813
|
-
display: -webkit-box;
|
|
814
|
-
display: -webkit-flex;
|
|
815
|
-
display: -ms-flexbox;
|
|
816
|
-
display: flex;
|
|
817
|
-
-webkit-box-pack: center;
|
|
818
|
-
-webkit-justify-content: center;
|
|
819
|
-
-ms-flex-pack: center;
|
|
820
|
-
justify-content: center;
|
|
821
|
-
-webkit-box-align: center;
|
|
822
|
-
-webkit-align-items: center;
|
|
823
|
-
-ms-flex-align: center;
|
|
824
|
-
align-items: center;
|
|
825
|
-
width: 100%;
|
|
826
|
-
height: 60px;
|
|
827
|
-
padding: 0 8px;
|
|
828
|
-
-webkit-box-sizing: border-box;
|
|
829
|
-
box-sizing: border-box;
|
|
830
|
-
margin-bottom: 8px;
|
|
831
|
-
background: #f3f5f8;
|
|
832
|
-
}
|
|
833
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966]-input[data-v-55852966] {
|
|
834
|
-
width: 85%;
|
|
835
|
-
overflow: hidden;
|
|
836
|
-
text-overflow: ellipsis;
|
|
837
|
-
white-space: nowrap;
|
|
838
|
-
cursor: pointer !important;
|
|
839
|
-
}
|
|
840
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"][disabled][data-v-55852966],
|
|
841
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"][disabled][data-v-55852966],
|
|
842
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"].disabled[data-v-55852966],
|
|
843
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"].disabled[data-v-55852966] {
|
|
844
|
-
cursor: pointer !important;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
847
|
ul[data-v-726261b7] {
|
|
848
848
|
margin: 0;
|
|
849
849
|
padding: 0;
|
package/es/index.css
CHANGED
|
@@ -1042,3 +1042,278 @@ ul[data-v-726261b7] {
|
|
|
1042
1042
|
margin-left: 8px;
|
|
1043
1043
|
margin-bottom: 8px;
|
|
1044
1044
|
}
|
|
1045
|
+
|
|
1046
|
+
.df[data-v-3b67e11b] {
|
|
1047
|
+
display: -webkit-box;
|
|
1048
|
+
display: -webkit-flex;
|
|
1049
|
+
display: -ms-flexbox;
|
|
1050
|
+
display: flex;
|
|
1051
|
+
}
|
|
1052
|
+
.search-tree-wrap[data-v-3b67e11b] .search-tree-item[data-v-3b67e11b] {
|
|
1053
|
+
display: -webkit-box;
|
|
1054
|
+
display: -webkit-flex;
|
|
1055
|
+
display: -ms-flexbox;
|
|
1056
|
+
display: flex;
|
|
1057
|
+
-webkit-box-align: center;
|
|
1058
|
+
-webkit-align-items: center;
|
|
1059
|
+
-ms-flex-align: center;
|
|
1060
|
+
align-items: center;
|
|
1061
|
+
}
|
|
1062
|
+
.search-tree-wrap[data-v-3b67e11b] .name-wrap[data-v-3b67e11b] {
|
|
1063
|
+
width: 48px;
|
|
1064
|
+
height: 48px;
|
|
1065
|
+
background: #7d88b5;
|
|
1066
|
+
display: -webkit-box;
|
|
1067
|
+
display: -webkit-flex;
|
|
1068
|
+
display: -ms-flexbox;
|
|
1069
|
+
display: flex;
|
|
1070
|
+
-webkit-box-align: center;
|
|
1071
|
+
-webkit-align-items: center;
|
|
1072
|
+
-ms-flex-align: center;
|
|
1073
|
+
align-items: center;
|
|
1074
|
+
-webkit-box-pack: center;
|
|
1075
|
+
-webkit-justify-content: center;
|
|
1076
|
+
-ms-flex-pack: center;
|
|
1077
|
+
justify-content: center;
|
|
1078
|
+
border-radius: 50%;
|
|
1079
|
+
margin-right: 13px;
|
|
1080
|
+
}
|
|
1081
|
+
.search-tree-wrap[data-v-3b67e11b] .name-wrap[data-v-3b67e11b] .name[data-v-3b67e11b] {
|
|
1082
|
+
font-size: 16px;
|
|
1083
|
+
color: #ffffff;
|
|
1084
|
+
margin-bottom: 0;
|
|
1085
|
+
line-height: 16px;
|
|
1086
|
+
}
|
|
1087
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap[data-v-3b67e11b] {
|
|
1088
|
+
text-overflow: ellipsis;
|
|
1089
|
+
overflow: hidden;
|
|
1090
|
+
white-space: nowrap;
|
|
1091
|
+
display: -webkit-box;
|
|
1092
|
+
display: -webkit-flex;
|
|
1093
|
+
display: -ms-flexbox;
|
|
1094
|
+
display: flex;
|
|
1095
|
+
-webkit-box-orient: vertical;
|
|
1096
|
+
-webkit-box-direction: normal;
|
|
1097
|
+
-webkit-flex-direction: column;
|
|
1098
|
+
-ms-flex-direction: column;
|
|
1099
|
+
flex-direction: column;
|
|
1100
|
+
}
|
|
1101
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap-top[data-v-3b67e11b] {
|
|
1102
|
+
-webkit-box-align: end;
|
|
1103
|
+
-webkit-align-items: flex-end;
|
|
1104
|
+
-ms-flex-align: end;
|
|
1105
|
+
align-items: flex-end;
|
|
1106
|
+
margin: 0;
|
|
1107
|
+
margin-bottom: 1px;
|
|
1108
|
+
text-overflow: ellipsis;
|
|
1109
|
+
overflow: hidden;
|
|
1110
|
+
white-space: nowrap;
|
|
1111
|
+
}
|
|
1112
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap-title[data-v-3b67e11b] {
|
|
1113
|
+
margin-bottom: 0;
|
|
1114
|
+
font-size: 16px;
|
|
1115
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
1116
|
+
font-weight: 400;
|
|
1117
|
+
color: #4e4e4e;
|
|
1118
|
+
line-height: 16px;
|
|
1119
|
+
}
|
|
1120
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap-title[data-v-3b67e11b] .c-title[data-v-3b67e11b] {
|
|
1121
|
+
font-size: 14px;
|
|
1122
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
1123
|
+
font-weight: 400;
|
|
1124
|
+
color: #212121;
|
|
1125
|
+
}
|
|
1126
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap-title[data-v-3b67e11b] .c-sub-title[data-v-3b67e11b] {
|
|
1127
|
+
font-size: 12px;
|
|
1128
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
1129
|
+
color: #4e4e4e;
|
|
1130
|
+
}
|
|
1131
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap-desc[data-v-3b67e11b] {
|
|
1132
|
+
margin-left: 10px;
|
|
1133
|
+
margin-bottom: 0;
|
|
1134
|
+
font-size: 12px;
|
|
1135
|
+
line-height: 17px;
|
|
1136
|
+
color: #aeaeae;
|
|
1137
|
+
}
|
|
1138
|
+
.search-tree-wrap[data-v-3b67e11b] .info-wrap-position[data-v-3b67e11b] {
|
|
1139
|
+
margin-bottom: 0;
|
|
1140
|
+
font-size: 12px;
|
|
1141
|
+
color: #7d88b5;
|
|
1142
|
+
line-height: 17px;
|
|
1143
|
+
}
|
|
1144
|
+
.load-more-btn-wrap[data-v-3b67e11b] {
|
|
1145
|
+
display: -webkit-box;
|
|
1146
|
+
display: -webkit-flex;
|
|
1147
|
+
display: -ms-flexbox;
|
|
1148
|
+
display: flex;
|
|
1149
|
+
-webkit-box-pack: center;
|
|
1150
|
+
-webkit-justify-content: center;
|
|
1151
|
+
-ms-flex-pack: center;
|
|
1152
|
+
justify-content: center;
|
|
1153
|
+
height: 35px;
|
|
1154
|
+
line-height: 35px;
|
|
1155
|
+
cursor: pointer;
|
|
1156
|
+
padding-top: 10px;
|
|
1157
|
+
-webkit-box-sizing: border-box;
|
|
1158
|
+
box-sizing: border-box;
|
|
1159
|
+
}
|
|
1160
|
+
.load-more-btn-wrap[data-v-3b67e11b] .search-input-icon[data-v-3b67e11b] {
|
|
1161
|
+
font-size: 16px;
|
|
1162
|
+
color: rgba(0, 0, 0, 0.4);
|
|
1163
|
+
margin-right: 14px;
|
|
1164
|
+
}
|
|
1165
|
+
.load-more-btn-wrap[data-v-3b67e11b] .load-more-btn[data-v-3b67e11b] {
|
|
1166
|
+
font-size: 12px;
|
|
1167
|
+
color: #747c8e;
|
|
1168
|
+
line-height: 12px;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.people-tree[data-v-41061249] {
|
|
1172
|
+
display: -webkit-box;
|
|
1173
|
+
display: -webkit-flex;
|
|
1174
|
+
display: -ms-flexbox;
|
|
1175
|
+
display: flex;
|
|
1176
|
+
}
|
|
1177
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] {
|
|
1178
|
+
width: 50%;
|
|
1179
|
+
padding: 22px 12px 0;
|
|
1180
|
+
max-height: 376px;
|
|
1181
|
+
height: 376px;
|
|
1182
|
+
overflow-y: auto;
|
|
1183
|
+
}
|
|
1184
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249].people-tree-left[data-v-41061249] {
|
|
1185
|
+
display: -webkit-box;
|
|
1186
|
+
display: -webkit-flex;
|
|
1187
|
+
display: -ms-flexbox;
|
|
1188
|
+
display: flex;
|
|
1189
|
+
-webkit-box-orient: vertical;
|
|
1190
|
+
-webkit-box-direction: normal;
|
|
1191
|
+
-webkit-flex-direction: column;
|
|
1192
|
+
-ms-flex-direction: column;
|
|
1193
|
+
flex-direction: column;
|
|
1194
|
+
}
|
|
1195
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249][data-v-41061249]:first-child {
|
|
1196
|
+
border-right: 1px solid #e8e8e8;
|
|
1197
|
+
}
|
|
1198
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249] {
|
|
1199
|
+
-webkit-box-sizing: border-box;
|
|
1200
|
+
box-sizing: border-box;
|
|
1201
|
+
color: #212121;
|
|
1202
|
+
font-size: 14px;
|
|
1203
|
+
list-style: none;
|
|
1204
|
+
display: -webkit-inline-box;
|
|
1205
|
+
display: -webkit-inline-flex;
|
|
1206
|
+
display: -ms-inline-flexbox;
|
|
1207
|
+
display: inline-flex;
|
|
1208
|
+
-webkit-box-align: center;
|
|
1209
|
+
-webkit-align-items: center;
|
|
1210
|
+
-ms-flex-align: center;
|
|
1211
|
+
align-items: center;
|
|
1212
|
+
height: 24px;
|
|
1213
|
+
line-height: 24px;
|
|
1214
|
+
margin-right: 8px;
|
|
1215
|
+
margin-bottom: 4px;
|
|
1216
|
+
padding: 0 6px;
|
|
1217
|
+
white-space: nowrap;
|
|
1218
|
+
background: rgba(213, 213, 213, 0.2);
|
|
1219
|
+
border: 1px solid rgba(0, 0, 0, 0.14);
|
|
1220
|
+
border-radius: 4px;
|
|
1221
|
+
-webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
1222
|
+
transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
1223
|
+
}
|
|
1224
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249].isRoot[data-v-41061249] {
|
|
1225
|
+
background: rgba(85, 133, 245, 0.08);
|
|
1226
|
+
border: 1px solid rgba(85, 133, 245, 0.5);
|
|
1227
|
+
color: #5585f5;
|
|
1228
|
+
}
|
|
1229
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249].isRoot[data-v-41061249] .tag-close[data-v-41061249] {
|
|
1230
|
+
color: #5585f5;
|
|
1231
|
+
}
|
|
1232
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249].isRoot[data-v-41061249] .tag-close[data-v-41061249][data-v-41061249]:hover {
|
|
1233
|
+
color: rgba(85, 133, 245, 0.6);
|
|
1234
|
+
}
|
|
1235
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249] .tag-close[data-v-41061249] {
|
|
1236
|
+
font-size: 12px;
|
|
1237
|
+
display: inline-block;
|
|
1238
|
+
font-size: 14px;
|
|
1239
|
+
margin-left: 3px;
|
|
1240
|
+
color: #969696;
|
|
1241
|
+
font-weight: 700;
|
|
1242
|
+
cursor: pointer;
|
|
1243
|
+
-webkit-transition: all 0.3s;
|
|
1244
|
+
transition: all 0.3s;
|
|
1245
|
+
}
|
|
1246
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249] .tag-close[data-v-41061249][data-v-41061249]:hover {
|
|
1247
|
+
color: rgba(85, 133, 245, 0.6);
|
|
1248
|
+
}
|
|
1249
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .tag-item[data-v-41061249] .tag-close[data-v-41061249][data-v-41061249]:active {
|
|
1250
|
+
color: #fff;
|
|
1251
|
+
}
|
|
1252
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .no-data-tips[data-v-41061249] {
|
|
1253
|
+
height: 200px;
|
|
1254
|
+
width: 100%;
|
|
1255
|
+
display: -webkit-box;
|
|
1256
|
+
display: -webkit-flex;
|
|
1257
|
+
display: -ms-flexbox;
|
|
1258
|
+
display: flex;
|
|
1259
|
+
-webkit-box-pack: center;
|
|
1260
|
+
-webkit-justify-content: center;
|
|
1261
|
+
-ms-flex-pack: center;
|
|
1262
|
+
justify-content: center;
|
|
1263
|
+
-webkit-box-align: center;
|
|
1264
|
+
-webkit-align-items: center;
|
|
1265
|
+
-ms-flex-align: center;
|
|
1266
|
+
align-items: center;
|
|
1267
|
+
font-size: 16px;
|
|
1268
|
+
font-weight: 700;
|
|
1269
|
+
}
|
|
1270
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .c-title[data-v-41061249] {
|
|
1271
|
+
font-size: 14px;
|
|
1272
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
1273
|
+
font-weight: 400;
|
|
1274
|
+
color: #212121;
|
|
1275
|
+
}
|
|
1276
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .c-sub-title[data-v-41061249] {
|
|
1277
|
+
font-size: 12px;
|
|
1278
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
1279
|
+
color: #4e4e4e;
|
|
1280
|
+
}
|
|
1281
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249] .p-title[data-v-41061249] {
|
|
1282
|
+
font-size: 14px;
|
|
1283
|
+
font-family: PingFangSC-Medium, PingFang SC;
|
|
1284
|
+
font-weight: 500;
|
|
1285
|
+
color: #212121;
|
|
1286
|
+
}
|
|
1287
|
+
.people-tree[data-v-41061249] .people-tree-item[data-v-41061249].tags-box[data-v-41061249] {
|
|
1288
|
+
display: -webkit-box;
|
|
1289
|
+
display: -webkit-flex;
|
|
1290
|
+
display: -ms-flexbox;
|
|
1291
|
+
display: flex;
|
|
1292
|
+
-webkit-flex-wrap: wrap;
|
|
1293
|
+
-ms-flex-wrap: wrap;
|
|
1294
|
+
flex-wrap: wrap;
|
|
1295
|
+
-webkit-box-pack: start;
|
|
1296
|
+
-webkit-justify-content: flex-start;
|
|
1297
|
+
-ms-flex-pack: start;
|
|
1298
|
+
justify-content: flex-start;
|
|
1299
|
+
-webkit-box-align: start;
|
|
1300
|
+
-webkit-align-items: flex-start;
|
|
1301
|
+
-ms-flex-align: start;
|
|
1302
|
+
align-items: flex-start;
|
|
1303
|
+
-webkit-align-content: flex-start;
|
|
1304
|
+
-ms-flex-line-pack: start;
|
|
1305
|
+
align-content: flex-start;
|
|
1306
|
+
}
|
|
1307
|
+
.df[data-v-41061249] {
|
|
1308
|
+
display: -webkit-box;
|
|
1309
|
+
display: -webkit-flex;
|
|
1310
|
+
display: -ms-flexbox;
|
|
1311
|
+
display: flex;
|
|
1312
|
+
}
|
|
1313
|
+
.search-input-icon[data-v-41061249] {
|
|
1314
|
+
color: rgba(0, 0, 0, 0.4);
|
|
1315
|
+
margin-bottom: -2px;
|
|
1316
|
+
}
|
|
1317
|
+
.main-tree-container[data-v-41061249] {
|
|
1318
|
+
overflow-y: auto;
|
|
1319
|
+
}
|