@zgfe/modules-dm 1.0.42-alpha.9 → 1.0.56-zhongyuan.1

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.
Files changed (112) hide show
  1. package/es/components/demo.js +1 -1
  2. package/es/constants/api.d.ts +37 -0
  3. package/es/constants/api.js +62 -1
  4. package/es/index.d.ts +3 -1
  5. package/es/index.js +3 -1
  6. package/es/modules/CutsModal.d.ts +66 -0
  7. package/es/modules/CutsModal.js +52 -0
  8. package/es/modules/dataManage/collectionAttributeList.d.ts +3 -0
  9. package/es/modules/dataManage/collectionAttributeList.js +516 -81
  10. package/es/modules/dataManage/collectionEventList.d.ts +6 -0
  11. package/es/modules/dataManage/collectionEventList.js +479 -62
  12. package/es/modules/dataManage/components/createAttrDrawer.d.ts +4 -0
  13. package/es/modules/dataManage/components/createAttrDrawer.js +264 -0
  14. package/es/modules/dataManage/components/createMetaDrawer.d.ts +4 -0
  15. package/es/modules/dataManage/components/createMetaDrawer.js +618 -0
  16. package/es/modules/dataManage/components/createVirtualDrawer.js +19 -19
  17. package/es/modules/dataManage/components/creditPop/imgs/link.png +0 -0
  18. package/es/modules/dataManage/components/creditPop/imgs/png01.png +0 -0
  19. package/es/modules/dataManage/components/creditPop/imgs/png02.png +0 -0
  20. package/es/modules/dataManage/components/creditPop/imgs/png03.png +0 -0
  21. package/es/modules/dataManage/components/creditPop/imgs/png04.png +0 -0
  22. package/es/modules/dataManage/components/creditPop/index.d.ts +5 -0
  23. package/es/modules/dataManage/components/creditPop/index.js +89 -0
  24. package/es/modules/dataManage/components/creditPop/index.less +121 -0
  25. package/es/modules/dataManage/components/deleteConfirm.d.ts +9 -0
  26. package/es/modules/dataManage/components/deleteConfirm.js +36 -0
  27. package/es/modules/dataManage/components/deleteUserAttrConfirm.d.ts +9 -0
  28. package/es/modules/dataManage/components/deleteUserAttrConfirm.js +57 -0
  29. package/es/modules/dataManage/components/depositPop/imgs/link.png +0 -0
  30. package/es/modules/dataManage/components/depositPop/imgs/png01.png +0 -0
  31. package/es/modules/dataManage/components/depositPop/imgs/png02.png +0 -0
  32. package/es/modules/dataManage/components/depositPop/index.d.ts +5 -0
  33. package/es/modules/dataManage/components/depositPop/index.js +89 -0
  34. package/es/modules/dataManage/components/depositPop/index.less +115 -0
  35. package/es/modules/dataManage/components/developModal/index.css +36 -0
  36. package/es/modules/dataManage/components/developModal/index.d.ts +5 -0
  37. package/es/modules/dataManage/components/developModal/index.js +224 -0
  38. package/es/modules/dataManage/components/developModal/index.less +36 -0
  39. package/es/modules/dataManage/components/editTxt/index.d.ts +5 -0
  40. package/es/modules/dataManage/components/editTxt/index.js +123 -0
  41. package/es/modules/dataManage/components/editTxt/index.less +44 -0
  42. package/es/modules/dataManage/components/editTxt/types.d.ts +48 -0
  43. package/es/modules/dataManage/components/editTxt/types.js +1 -0
  44. package/es/modules/dataManage/components/eventFilter/index.js +13 -13
  45. package/es/modules/dataManage/components/eventGroupingDrawer.js +41 -44
  46. package/es/modules/dataManage/components/importAttrDialog/demo/index.d.ts +2 -0
  47. package/es/modules/dataManage/components/importAttrDialog/demo/index.js +28 -0
  48. package/es/modules/dataManage/components/importAttrDialog/index.d.ts +7 -0
  49. package/es/modules/dataManage/components/importAttrDialog/index.js +157 -0
  50. package/es/modules/dataManage/components/importAttrDialog/styles/index.less +90 -0
  51. package/es/modules/dataManage/components/importMetaDialog/demo/index.d.ts +2 -0
  52. package/es/modules/dataManage/components/importMetaDialog/demo/index.js +28 -0
  53. package/es/modules/dataManage/components/importMetaDialog/index.d.ts +7 -0
  54. package/es/modules/dataManage/components/importMetaDialog/index.js +157 -0
  55. package/es/modules/dataManage/components/importMetaDialog/styles/index.less +91 -0
  56. package/es/modules/dataManage/components/selectAttributes.js +10 -10
  57. package/es/modules/dataManage/components/tablePlus.d.ts +4 -0
  58. package/es/modules/dataManage/components/tablePlus.js +625 -94
  59. package/es/modules/dataManage/components/virtualTablePlus.js +7 -7
  60. package/es/modules/dataManage/demo/index.js +79 -16
  61. package/es/modules/dataManage/detailedData/DetailedDataForm.d.ts +5 -0
  62. package/es/modules/dataManage/detailedData/DetailedDataForm.js +216 -0
  63. package/es/modules/dataManage/detailedData/index.d.ts +24 -0
  64. package/es/modules/dataManage/detailedData/index.js +403 -0
  65. package/es/modules/dataManage/detailedData/useColumns.d.ts +34 -0
  66. package/es/modules/dataManage/detailedData/useColumns.js +135 -0
  67. package/es/modules/dataManage/index.d.ts +9 -4
  68. package/es/modules/dataManage/index.js +142 -50
  69. package/es/modules/dataManage/styles/detailed.less +74 -0
  70. package/es/modules/dataManage/styles/index.less +364 -10
  71. package/es/modules/dataManage/types.d.ts +8 -0
  72. package/es/modules/dataManage/virtualEventList.js +13 -13
  73. package/es/modules/dataMap/component/data.d.ts +7 -0
  74. package/es/modules/dataMap/component/data.js +257 -0
  75. package/es/modules/dataMap/component/drawerAdd.d.ts +6 -0
  76. package/es/modules/dataMap/component/drawerAdd.js +376 -0
  77. package/es/modules/dataMap/component/leftTree.d.ts +6 -0
  78. package/es/modules/dataMap/component/leftTree.js +227 -0
  79. package/es/modules/dataMap/component/rightDetail.d.ts +7 -0
  80. package/es/modules/dataMap/component/rightDetail.js +680 -0
  81. package/es/modules/dataMap/component/selectAttr.d.ts +7 -0
  82. package/es/modules/dataMap/component/selectAttr.js +92 -0
  83. package/es/modules/dataMap/css/index.css +163 -0
  84. package/es/modules/dataMap/css/index.less +177 -0
  85. package/es/modules/dataMap/demo/index.d.ts +2 -0
  86. package/es/modules/dataMap/demo/index.js +6 -0
  87. package/es/modules/dataMap/img/empty-data.png +0 -0
  88. package/es/modules/dataMap/index.d.ts +2 -0
  89. package/es/modules/dataMap/index.js +80 -0
  90. package/es/modules/dataMap/mapDetail.d.ts +3 -0
  91. package/es/modules/dataMap/mapDetail.js +44 -0
  92. package/es/modules/dataMap/mapSetting.d.ts +6 -0
  93. package/es/modules/dataMap/mapSetting.js +148 -0
  94. package/es/modules/dataPlan/addEventOrUser.js +31 -30
  95. package/es/modules/dataPlan/addPlan.js +29 -27
  96. package/es/modules/dataPlan/eventList.js +2 -2
  97. package/es/modules/dataPlan/index.js +10 -10
  98. package/es/modules/dataPlan/search.js +6 -5
  99. package/es/modules/dataPlan/tablePlus.js +3 -3
  100. package/es/modules/dataPlan/userAttributeList.js +5 -5
  101. package/es/modules/dataReal/css/index.css +48 -0
  102. package/es/modules/dataReal/css/index.less +51 -0
  103. package/es/modules/dataReal/demo/index.d.ts +2 -0
  104. package/es/modules/dataReal/demo/index.js +6 -0
  105. package/es/modules/dataReal/index1.d.ts +28 -0
  106. package/es/modules/dataReal/index1.js +215 -0
  107. package/es/modules/dataReal/table.d.ts +5 -0
  108. package/es/modules/dataReal/table.js +258 -0
  109. package/es/store/index.js +11 -11
  110. package/es/utils/index.d.ts +1 -0
  111. package/es/utils/index.js +9 -1
  112. package/package.json +8 -4
@@ -1,16 +1,20 @@
1
1
  @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
- .data-collection {
2
+ .data-manage {
3
3
  position: relative;
4
- height: calc(100vh - 80px);
4
+ height: calc(100vh - 48px);
5
5
  // padding: 24px;
6
- background: #fff;
6
+ background: #fafafb;
7
7
  border-radius: 8px;
8
+ .ant-tabs-tab + .ant-tabs-tab {
9
+ margin: 0 0 0 24px;
10
+ }
8
11
  > :nth-child(1) {
9
12
  > :nth-child(1) {
10
13
  margin-bottom: 0;
14
+ padding-left: 24px;
11
15
  }
12
16
  > :nth-child(2) {
13
- margin: 16px;
17
+ margin: 16px !important;
14
18
  padding: 24px;
15
19
  }
16
20
  }
@@ -27,7 +31,7 @@
27
31
  }
28
32
  .creact-group {
29
33
  .ant-modal-body {
30
- padding: 3px 20px 20px 20px !important;
34
+ padding: 3px 20px 0px 20px !important;
31
35
  }
32
36
  }
33
37
  .ant-radio-group {
@@ -67,6 +71,24 @@
67
71
  color: @primary-color;
68
72
  }
69
73
  }
74
+ &-pop-btn {
75
+ display: inline-flex;
76
+ gap: 8px;
77
+ align-items: center;
78
+ height: 32px;
79
+ padding: 0 16px;
80
+ background: var(--io-n-05, #f2f3f4);
81
+ border-radius: 4px;
82
+ cursor: pointer;
83
+ }
84
+ // 按钮下拉列表
85
+ &-downItems {
86
+ color: #021429;
87
+ font-size: 14px;
88
+ span {
89
+ margin: 0px 8px 0px 0px;
90
+ }
91
+ }
70
92
  }
71
93
 
72
94
  .virtual-event-list,
@@ -76,11 +98,11 @@
76
98
  display: flex;
77
99
  margin-bottom: 17px;
78
100
  .top-select {
79
- width: 264px;
101
+ width: 160px;
80
102
  margin-right: 12px;
81
103
  }
82
104
  .top-input {
83
- width: 264px;
105
+ width: 244px;
84
106
  margin-right: 12px;
85
107
  .ant-input-prefix {
86
108
  margin-right: 8px;
@@ -94,6 +116,9 @@
94
116
  font-weight: bold;
95
117
  }
96
118
  }
119
+ .ant-btn-default {
120
+ background: #fff;
121
+ }
97
122
  .top-button {
98
123
  position: absolute;
99
124
  top: 0;
@@ -101,7 +126,7 @@
101
126
  display: flex;
102
127
  gap: 16px;
103
128
  line-height: 100%;
104
- .button:not(.disabled) {
129
+ .button:not(.disabled):not(.ant-btn-primary) {
105
130
  color: #1454e5;
106
131
  border: 1px solid #1454e5;
107
132
  }
@@ -190,7 +215,7 @@
190
215
  }
191
216
  .edit-del {
192
217
  .bsicon {
193
- margin-left: 15px;
218
+ margin-right: 15px;
194
219
  font-size: 16px !important;
195
220
  cursor: pointer;
196
221
  }
@@ -217,6 +242,9 @@
217
242
  }
218
243
  }
219
244
  .event_attrs {
245
+ display: flex;
246
+ justify-content: flex-start;
247
+ text-align: center;
220
248
  .bsicon {
221
249
  margin-left: 12px;
222
250
  font-size: 16px !important;
@@ -224,6 +252,12 @@
224
252
  color: @primary-color;
225
253
  }
226
254
  }
255
+ &_text {
256
+ width: 86%;
257
+ overflow: hidden;
258
+ text-align: left;
259
+ text-overflow: ellipsis;
260
+ }
227
261
  }
228
262
  .event_name {
229
263
  display: flex;
@@ -275,6 +309,10 @@
275
309
  align-items: center;
276
310
  margin-top: -6px;
277
311
  }
312
+ .ant-radio-wrapper {
313
+ align-items: center;
314
+ margin-top: -6px;
315
+ }
278
316
  }
279
317
  .alias_name {
280
318
  display: flex;
@@ -319,7 +357,7 @@
319
357
  }
320
358
  .set {
321
359
  color: @primary-color;
322
- text-align: center;
360
+ // text-align: center;
323
361
  cursor: pointer;
324
362
  user-select: none;
325
363
  }
@@ -331,10 +369,61 @@
331
369
  }
332
370
 
333
371
  .attr-list {
372
+ &-top-box {
373
+ position: relative;
374
+ display: flex;
375
+ margin-bottom: 17px;
376
+ .top-select {
377
+ width: 160px;
378
+ margin-right: 12px;
379
+ }
380
+ .top-input {
381
+ width: 244px;
382
+ margin-right: 12px;
383
+ .ant-input-prefix {
384
+ margin-right: 8px;
385
+ }
386
+ }
387
+ .top-total {
388
+ line-height: 32px;
389
+ span {
390
+ margin: 0 4px;
391
+ color: @primary-color;
392
+ font-weight: bold;
393
+ }
394
+ }
395
+ .ant-btn-default {
396
+ background: #fff;
397
+ }
398
+ .top-button {
399
+ position: absolute;
400
+ top: 0;
401
+ right: 0;
402
+ display: flex;
403
+ gap: 16px;
404
+ line-height: 100%;
405
+ .button:not(.disabled):not(.ant-btn-primary) {
406
+ color: #1454e5;
407
+ border: 1px solid #1454e5;
408
+ }
409
+ }
410
+ }
334
411
  .ant-table {
335
412
  overflow: hidden;
336
413
  border: 1px solid #ecedf0;
337
414
  border-radius: 8px;
415
+ .ant-table-thead {
416
+ > tr > th {
417
+ height: 50px;
418
+ padding: 0 16px;
419
+ }
420
+ }
421
+ .ant-table-tbody {
422
+ > tr > td {
423
+ height: 50px;
424
+ padding: 0 16px;
425
+ }
426
+ }
338
427
  }
339
428
  .attr-name {
340
429
  display: flex;
@@ -354,6 +443,11 @@
354
443
  cursor: pointer;
355
444
  }
356
445
  }
446
+ .ant-checkbox-wrapper {
447
+ align-items: center;
448
+ margin-top: -6px;
449
+ margin-right: 30px;
450
+ }
357
451
  }
358
452
  .alias_name {
359
453
  border: none;
@@ -839,3 +933,263 @@
839
933
  }
840
934
  }
841
935
  }
936
+
937
+ // dm项目中modal-confirm公用的样式
938
+ .dm-modal-del-confirm {
939
+ &-title {
940
+ display: flex;
941
+ gap: 8px;
942
+ font-size: 24px;
943
+ .tishi1 {
944
+ color: #fd9f41;
945
+ }
946
+ }
947
+ &-content {
948
+ display: flex;
949
+ flex: 1 0 0;
950
+ flex-direction: column;
951
+ gap: 4px;
952
+ align-items: flex-start;
953
+ align-self: stretch;
954
+ height: 102px;
955
+ margin-top: 16px;
956
+ padding: 8px 0 8px 32px;
957
+ overflow-y: auto;
958
+ color: #354354;
959
+ background: var(--io-n-02, #fafafb);
960
+ border-radius: 8px;
961
+ }
962
+ .ant-modal-confirm-body .ant-modal-confirm-content {
963
+ margin-top: 16px;
964
+ }
965
+ .ant-modal-confirm-btns {
966
+ .ant-btn-primary {
967
+ margin-left: 16px !important;
968
+ font-size: 14px;
969
+ background: #165dff;
970
+ }
971
+ }
972
+ .ant-modal-confirm .ant-modal-body {
973
+ padding: 24px !important;
974
+ }
975
+ }
976
+
977
+ .create-meta-drawer {
978
+ .set:hover {
979
+ color: #ff4d4f;
980
+ }
981
+ &-content {
982
+ display: flex;
983
+ flex: 1;
984
+ flex-direction: column;
985
+ gap: 24px;
986
+ &-select {
987
+ display: flex;
988
+ align-items: center;
989
+ justify-content: right;
990
+ margin-right: -12px;
991
+ margin-left: -16px;
992
+ }
993
+ .ant-table-thead > tr > th {
994
+ color: var(--io-N-, #021429);
995
+ font-weight: 400;
996
+ font-size: 14px;
997
+ font-family: 'PingFang SC';
998
+ font-style: normal;
999
+ line-height: normal;
1000
+ }
1001
+ }
1002
+ &-table {
1003
+ margin: 20px 0px;
1004
+ overflow: hidden;
1005
+ border-radius: 8px;
1006
+ }
1007
+
1008
+ &-info {
1009
+ display: flex;
1010
+ flex-direction: row;
1011
+ gap: 12px;
1012
+ align-items: center;
1013
+ height: 32px;
1014
+ &-title {
1015
+ display: flex;
1016
+ flex-direction: row;
1017
+ gap: 4px;
1018
+ justify-content: flex-end;
1019
+ width: 68px;
1020
+ color: var(--io-N6-, #67727f);
1021
+ font-weight: 400;
1022
+ font-size: 14px;
1023
+ font-family: 'PingFang SC';
1024
+ font-style: normal;
1025
+ line-height: 32px;
1026
+ line-height: normal;
1027
+ text-align: right;
1028
+ }
1029
+ &-input {
1030
+ position: relative;
1031
+ flex: 1;
1032
+ .button:not(.disabled):not(.ant-btn-primary) {
1033
+ float: right;
1034
+ padding: 0 16px;
1035
+ color: #1454e5;
1036
+ border: 1px solid #1454e5;
1037
+ }
1038
+ &-num {
1039
+ position: absolute;
1040
+ top: 6px;
1041
+ right: 12px;
1042
+ color: var(--io-N4-, #9aa1a9);
1043
+ font-weight: 400;
1044
+ font-size: 14px;
1045
+ font-family: 'PingFang SC';
1046
+ font-style: normal;
1047
+ line-height: 20px;
1048
+ }
1049
+ }
1050
+ }
1051
+
1052
+ &-footer {
1053
+ display: flex;
1054
+ gap: 16px;
1055
+ align-items: center;
1056
+ justify-content: flex-end;
1057
+ margin: 0 -24px -24px;
1058
+ padding: 18px 24px 18px 0px;
1059
+ background: #fff;
1060
+ border-top: 1px solid var(--io-N1-, #e6e7ea);
1061
+ }
1062
+ .ant-drawer-content-wrapper {
1063
+ overflow-x: hidden;
1064
+ }
1065
+ .ant-drawer-content,
1066
+ .ant-drawer-wrapper-body {
1067
+ overflow: hidden !important;
1068
+ }
1069
+ .ant-drawer-body {
1070
+ display: flex;
1071
+ flex-direction: column;
1072
+ }
1073
+ .ant-drawer-title {
1074
+ span {
1075
+ margin-left: 8px;
1076
+ color: #9aa1a9;
1077
+ font-size: 12px;
1078
+ }
1079
+ }
1080
+ .ant-drawer-close {
1081
+ display: none;
1082
+ }
1083
+ .ant-drawer-extra {
1084
+ .qingchu {
1085
+ font-size: 20px !important;
1086
+ cursor: pointer;
1087
+ }
1088
+ }
1089
+ }
1090
+
1091
+ .create-attr-drawer {
1092
+ &-content {
1093
+ display: flex;
1094
+ flex: 1;
1095
+ flex-direction: column;
1096
+ gap: 24px;
1097
+ &-select {
1098
+ display: flex;
1099
+ align-items: center;
1100
+ justify-content: right;
1101
+ margin-right: -12px;
1102
+ margin-left: -16px;
1103
+ }
1104
+ .ant-table-thead > tr > th {
1105
+ color: var(--io-N-, #021429);
1106
+ font-weight: 400;
1107
+ font-size: 14px;
1108
+ font-family: 'PingFang SC';
1109
+ font-style: normal;
1110
+ line-height: normal;
1111
+ }
1112
+ }
1113
+
1114
+ &-info {
1115
+ display: flex;
1116
+ flex-direction: row;
1117
+ gap: 12px;
1118
+ align-items: center;
1119
+ height: 32px;
1120
+ &-title {
1121
+ display: flex;
1122
+ flex-direction: row;
1123
+ gap: 4px;
1124
+ justify-content: flex-end;
1125
+ width: 68px;
1126
+ color: var(--io-N6-, #67727f);
1127
+ font-weight: 400;
1128
+ font-size: 14px;
1129
+ font-family: 'PingFang SC';
1130
+ font-style: normal;
1131
+ line-height: 32px;
1132
+ line-height: normal;
1133
+ text-align: right;
1134
+ }
1135
+ &-input {
1136
+ position: relative;
1137
+ flex: 1;
1138
+ .button:not(.disabled):not(.ant-btn-primary) {
1139
+ float: right;
1140
+ padding: 0 16px;
1141
+ color: #1454e5;
1142
+ border: 1px solid #1454e5;
1143
+ }
1144
+ &-num {
1145
+ position: absolute;
1146
+ top: 6px;
1147
+ right: 12px;
1148
+ color: var(--io-N4-, #9aa1a9);
1149
+ font-weight: 400;
1150
+ font-size: 14px;
1151
+ font-family: 'PingFang SC';
1152
+ font-style: normal;
1153
+ line-height: 20px;
1154
+ }
1155
+ }
1156
+ }
1157
+
1158
+ &-footer {
1159
+ display: flex;
1160
+ gap: 16px;
1161
+ align-items: center;
1162
+ justify-content: flex-end;
1163
+ margin: 0 -24px -24px;
1164
+ padding: 18px 24px 18px 0px;
1165
+ background: #fff;
1166
+ border-top: 1px solid var(--io-N1-, #e6e7ea);
1167
+ }
1168
+ .ant-drawer-content-wrapper {
1169
+ overflow-x: hidden;
1170
+ }
1171
+ .ant-drawer-content,
1172
+ .ant-drawer-wrapper-body {
1173
+ overflow: hidden !important;
1174
+ }
1175
+ .ant-drawer-body {
1176
+ display: flex;
1177
+ flex-direction: column;
1178
+ }
1179
+ .ant-drawer-title {
1180
+ span {
1181
+ margin-left: 8px;
1182
+ color: #9aa1a9;
1183
+ font-size: 12px;
1184
+ }
1185
+ }
1186
+ .ant-drawer-close {
1187
+ display: none;
1188
+ }
1189
+ .ant-drawer-extra {
1190
+ .qingchu {
1191
+ font-size: 20px !important;
1192
+ cursor: pointer;
1193
+ }
1194
+ }
1195
+ }
@@ -76,3 +76,11 @@ export interface EventGroupingDrawerProps {
76
76
  refresh: Function;
77
77
  source: 'virtual' | 'collection';
78
78
  }
79
+ export interface CreateMetaDrawerProps {
80
+ isShow: boolean;
81
+ onClose: Function;
82
+ onSubmit?: Function;
83
+ selectTreeName?: string;
84
+ }
85
+ export interface DevelopModelProps {
86
+ }
@@ -1,15 +1,15 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
- function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
8
8
  function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
9
- function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
10
- function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
11
- function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
12
- function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
9
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
10
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
11
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
12
+ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
13
13
  import { BizGlobalDataContext, IconFont } from '@zgfe/business-lib';
14
14
  import { Input, Button, Select, Modal, message, Pagination } from 'antd';
15
15
  import request from '../../utils/ajax';
@@ -246,7 +246,7 @@ var VirtualEventList = function VirtualEventList() {
246
246
  className: classPrefix
247
247
  }, /*#__PURE__*/React.createElement("div", {
248
248
  className: "".concat(classPrefix, "-top-box")
249
- }, groupOptions.length > 0 && /*#__PURE__*/React.createElement(Select, {
249
+ }, groupOptions.length > 0 && (/*#__PURE__*/React.createElement(Select, {
250
250
  defaultValue: -999,
251
251
  className: "top-select",
252
252
  onChange: handleSelectChange,
@@ -257,7 +257,7 @@ var VirtualEventList = function VirtualEventList() {
257
257
  color: '#5f6085'
258
258
  }
259
259
  })
260
- }), /*#__PURE__*/React.createElement(Input, {
260
+ })), /*#__PURE__*/React.createElement(Input, {
261
261
  className: "top-input",
262
262
  onChange: eventNameChange,
263
263
  placeholder: "\u8BF7\u8F93\u5165\u4E8B\u4EF6\u540D\u79F0\u6216\u522B\u540D",
@@ -0,0 +1,7 @@
1
+ export declare const buttonAnalyze: {
2
+ name: string;
3
+ attrs: {
4
+ page: string;
5
+ filter: string[];
6
+ };
7
+ };