@zgfe/modules-dm 1.0.57-zhongyuan.6 → 1.0.57-zhongyuan.61
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/es/constants/api.d.ts +9 -1
- package/es/constants/api.js +10 -2
- package/es/modules/CutsModal.d.ts +8 -0
- package/es/modules/clearRule/addRule.d.ts +1 -0
- package/es/modules/clearRule/addRule.js +318 -180
- package/es/modules/clearRule/css/index.css +265 -256
- package/es/modules/clearRule/css/index.less +10 -1
- package/es/modules/clearRule/importMetaDialog/styles/index.less +91 -91
- package/es/modules/clearRule/index.js +175 -89
- package/es/modules/dataManage/collectionAttributeList.d.ts +2 -0
- package/es/modules/dataManage/collectionAttributeList.js +48 -24
- package/es/modules/dataManage/collectionEventList.js +6 -3
- package/es/modules/dataManage/components/createMetaDrawer.js +85 -4
- package/es/modules/dataManage/components/eventFilter/index.js +7 -5
- package/es/modules/dataManage/components/eventGroupingDrawer.js +1 -4
- package/es/modules/dataManage/components/panelList.js +1 -1
- package/es/modules/dataManage/components/tablePlus.d.ts +8 -0
- package/es/modules/dataManage/components/tablePlus.js +296 -145
- package/es/modules/dataManage/styles/index.less +1210 -1205
- package/es/modules/dataManage/types.d.ts +4 -0
- package/es/modules/dataMap/component/drawerAdd.js +3 -2
- package/es/modules/dataMap/component/leftTree.js +1 -1
- package/es/modules/dataPlan/addPlan.js +5 -4
- package/es/modules/formulateRule/addFormulate.d.ts +1 -0
- package/es/modules/formulateRule/addFormulate.js +141 -36
- package/es/modules/formulateRule/addRule.d.ts +2 -0
- package/es/modules/formulateRule/addRule.js +201 -27
- package/es/modules/formulateRule/index.js +108 -64
- package/es/utils/index.d.ts +2 -0
- package/es/utils/index.js +9 -0
- package/package.json +64 -64
package/es/constants/api.d.ts
CHANGED
|
@@ -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
|
-
|
|
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;
|
package/es/constants/api.js
CHANGED
|
@@ -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
|
-
|
|
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;
|