@zgfe/modules-dm 1.0.57-zhongyuan.6 → 1.0.57-zhongyuan.60

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 (31) hide show
  1. package/es/constants/api.d.ts +9 -1
  2. package/es/constants/api.js +10 -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 +318 -180
  6. package/es/modules/clearRule/css/index.css +265 -256
  7. package/es/modules/clearRule/css/index.less +10 -1
  8. package/es/modules/clearRule/importMetaDialog/styles/index.less +91 -91
  9. package/es/modules/clearRule/index.js +175 -89
  10. package/es/modules/dataManage/collectionAttributeList.d.ts +1 -0
  11. package/es/modules/dataManage/collectionAttributeList.js +38 -20
  12. package/es/modules/dataManage/collectionEventList.js +6 -3
  13. package/es/modules/dataManage/components/createMetaDrawer.js +85 -4
  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 +1 -1
  17. package/es/modules/dataManage/components/tablePlus.d.ts +8 -0
  18. package/es/modules/dataManage/components/tablePlus.js +296 -145
  19. package/es/modules/dataManage/styles/index.less +1210 -1205
  20. package/es/modules/dataManage/types.d.ts +4 -0
  21. package/es/modules/dataMap/component/drawerAdd.js +3 -2
  22. package/es/modules/dataMap/component/leftTree.js +1 -1
  23. package/es/modules/dataPlan/addPlan.js +5 -4
  24. package/es/modules/formulateRule/addFormulate.d.ts +1 -0
  25. package/es/modules/formulateRule/addFormulate.js +141 -36
  26. package/es/modules/formulateRule/addRule.d.ts +2 -0
  27. package/es/modules/formulateRule/addRule.js +201 -27
  28. package/es/modules/formulateRule/index.js +108 -64
  29. package/es/utils/index.d.ts +2 -0
  30. package/es/utils/index.js +9 -0
  31. package/package.json +64 -64
@@ -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;
@@ -151,7 +151,9 @@ var apis = {
151
151
  downloadRule: '/zg/web/v2/verify/exportVerify',
152
152
  exportFile: '/zg/web/v2/verify/report/export',
153
153
  downloadTemple: '/zg/web/v2/verify/downloadMould',
154
- allOpenStatus: '/zg/web/v2/verify/statusMain'
154
+ allOpenStatus: '/zg/web/v2/verify/statusMain',
155
+ checkStatus: '/zg/web/v2/verify/statusBefore',
156
+ checkExists: '/zg/web/v2/verify/checkExists'
155
157
  },
156
158
  clearRule: {
157
159
  getList: '/zg/web/v2/rinseShiftRule/queryRinseShiftRuleList',
@@ -159,11 +161,17 @@ var apis = {
159
161
  checkRule: '/zg/web/v2/rinseShiftRule/updateRinseShiftRuleCheck',
160
162
  getDetail: '/zg/web/v2/rinseShiftRule/detail',
161
163
  modifyRule: '/zg/web/v2/rinseShiftRule/updateRinseShiftRule',
162
- checkStatis: '/zg/web/v2/rinseShiftRule/statusBefore',
164
+ checkStatus: '/zg/web/v2/rinseShiftRule/statusBefore',
163
165
  selectStatus: '/zg/web/v2/rinseShiftRule/status',
164
166
  deleteRule: '/zg/web/v2/rinseShiftRule/deleteRule',
165
167
  exportFile: '/zg/web/v2/rinseShiftRule/exportReport',
166
168
  allOpenStatus: '/zg/web/v2/rinseShiftRule/statusMain'
169
+ },
170
+ dict: {
171
+ dictList: '/zg/web/v2/systemSettings/attr/dict/list',
172
+ eventTag: '/zg/web/v2/eventLabel/list',
173
+ addLabelRelation: '/zg/web/v2/eventLabel/addLabelRelation',
174
+ delLabelRelation: '/zg/web/v2/eventLabel/delLabelRelation'
167
175
  }
168
176
  };
169
177
  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;