@zgfe/modules-dm 1.0.57-zhongyuan.8 → 1.0.57-zhongyuan.80

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 (33) hide show
  1. package/es/constants/api.d.ts +9 -1
  2. package/es/constants/api.js +11 -2
  3. package/es/modules/CutsModal.d.ts +8 -0
  4. package/es/modules/clearRule/addRule.d.ts +1 -0
  5. package/es/modules/clearRule/addRule.js +313 -171
  6. package/es/modules/clearRule/css/index.css +265 -256
  7. package/es/modules/clearRule/css/index.less +279 -270
  8. package/es/modules/clearRule/index.js +172 -89
  9. package/es/modules/dataManage/collectionAttributeList.d.ts +2 -0
  10. package/es/modules/dataManage/collectionAttributeList.js +56 -29
  11. package/es/modules/dataManage/collectionEventList.js +72 -21
  12. package/es/modules/dataManage/components/createMetaDrawer.js +98 -9
  13. package/es/modules/dataManage/components/developModal/index.js +5 -5
  14. package/es/modules/dataManage/components/eventFilter/index.js +7 -5
  15. package/es/modules/dataManage/components/eventGroupingDrawer.js +1 -4
  16. package/es/modules/dataManage/components/panelList.js +4 -2
  17. package/es/modules/dataManage/components/tablePlus.d.ts +8 -0
  18. package/es/modules/dataManage/components/tablePlus.js +364 -163
  19. package/es/modules/dataManage/detailedData/useColumns.js +1 -1
  20. package/es/modules/dataManage/styles/index.less +1210 -1205
  21. package/es/modules/dataManage/types.d.ts +4 -0
  22. package/es/modules/dataMap/component/drawerAdd.js +3 -2
  23. package/es/modules/dataMap/component/leftTree.js +7 -5
  24. package/es/modules/dataMap/component/rightDetail.js +94 -57
  25. package/es/modules/dataPlan/addPlan.js +5 -4
  26. package/es/modules/formulateRule/addFormulate.d.ts +1 -0
  27. package/es/modules/formulateRule/addFormulate.js +141 -36
  28. package/es/modules/formulateRule/addRule.d.ts +2 -0
  29. package/es/modules/formulateRule/addRule.js +201 -27
  30. package/es/modules/formulateRule/index.js +108 -64
  31. package/es/utils/index.d.ts +2 -0
  32. package/es/utils/index.js +9 -0
  33. package/package.json +3 -3
@@ -88,6 +88,8 @@ declare let apis: {
88
88
  exportFile: string;
89
89
  downloadTemple: string;
90
90
  allOpenStatus: string;
91
+ checkStatus: string;
92
+ checkExists: string;
91
93
  };
92
94
  clearRule: {
93
95
  getList: string;
@@ -95,11 +97,17 @@ declare let apis: {
95
97
  checkRule: string;
96
98
  getDetail: string;
97
99
  modifyRule: string;
98
- checkStatis: string;
100
+ checkStatus: string;
99
101
  selectStatus: string;
100
102
  deleteRule: string;
101
103
  exportFile: string;
102
104
  allOpenStatus: string;
103
105
  };
106
+ dict: {
107
+ dictList: string;
108
+ eventTag: string;
109
+ addLabelRelation: string;
110
+ delLabelRelation: string;
111
+ };
104
112
  };
105
113
  export default apis;
@@ -1,6 +1,7 @@
1
1
  var apis = {
2
2
  // 埋点管理 - 事件列表
3
3
  queryCollectionEventList: '/zg/web/v2/data/queryEventMetasOfGroup',
4
+ // queryCollectionEventList: '/zg/web/v2/data/queryEventMetas',
4
5
  // 埋点管理 - 事件列表 - 修改别名 | 修改显示状态 | 修改采集状态 | 修改收藏状态
5
6
  updateEventInfo: '/zg/web/v2/event/updateEventInfo',
6
7
  // 埋点管理 - 事件列表 - 创建分组 | 修改分组
@@ -151,7 +152,9 @@ var apis = {
151
152
  downloadRule: '/zg/web/v2/verify/exportVerify',
152
153
  exportFile: '/zg/web/v2/verify/report/export',
153
154
  downloadTemple: '/zg/web/v2/verify/downloadMould',
154
- allOpenStatus: '/zg/web/v2/verify/statusMain'
155
+ allOpenStatus: '/zg/web/v2/verify/statusMain',
156
+ checkStatus: '/zg/web/v2/verify/statusBefore',
157
+ checkExists: '/zg/web/v2/verify/checkExists'
155
158
  },
156
159
  clearRule: {
157
160
  getList: '/zg/web/v2/rinseShiftRule/queryRinseShiftRuleList',
@@ -159,11 +162,17 @@ var apis = {
159
162
  checkRule: '/zg/web/v2/rinseShiftRule/updateRinseShiftRuleCheck',
160
163
  getDetail: '/zg/web/v2/rinseShiftRule/detail',
161
164
  modifyRule: '/zg/web/v2/rinseShiftRule/updateRinseShiftRule',
162
- checkStatis: '/zg/web/v2/rinseShiftRule/statusBefore',
165
+ checkStatus: '/zg/web/v2/rinseShiftRule/statusBefore',
163
166
  selectStatus: '/zg/web/v2/rinseShiftRule/status',
164
167
  deleteRule: '/zg/web/v2/rinseShiftRule/deleteRule',
165
168
  exportFile: '/zg/web/v2/rinseShiftRule/exportReport',
166
169
  allOpenStatus: '/zg/web/v2/rinseShiftRule/statusMain'
170
+ },
171
+ dict: {
172
+ dictList: '/zg/web/v2/systemSettings/attr/dict/list',
173
+ eventTag: '/zg/web/v2/eventLabel/list',
174
+ addLabelRelation: '/zg/web/v2/eventLabel/addLabelRelation',
175
+ delLabelRelation: '/zg/web/v2/eventLabel/delLabelRelation'
167
176
  }
168
177
  };
169
178
  export default apis;
@@ -145,3 +145,11 @@ export interface RuleDetailType {
145
145
  content: string;
146
146
  }[];
147
147
  }
148
+ export interface DictData {
149
+ dictName: string;
150
+ id: number;
151
+ }
152
+ export interface DictList {
153
+ label: string;
154
+ value: string;
155
+ }
@@ -6,5 +6,6 @@ declare const AddRule: React.FC<{
6
6
  onSetclose: Function;
7
7
  currentRuleDetail: RuleDetailType | undefined | null;
8
8
  getList: Function;
9
+ ruleRowView?: boolean;
9
10
  }>;
10
11
  export default AddRule;