@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.
- package/es/constants/api.d.ts +9 -1
- package/es/constants/api.js +11 -2
- package/es/modules/CutsModal.d.ts +8 -0
- package/es/modules/clearRule/addRule.d.ts +1 -0
- package/es/modules/clearRule/addRule.js +313 -171
- package/es/modules/clearRule/css/index.css +265 -256
- package/es/modules/clearRule/css/index.less +279 -270
- package/es/modules/clearRule/index.js +172 -89
- package/es/modules/dataManage/collectionAttributeList.d.ts +2 -0
- package/es/modules/dataManage/collectionAttributeList.js +56 -29
- package/es/modules/dataManage/collectionEventList.js +72 -21
- package/es/modules/dataManage/components/createMetaDrawer.js +98 -9
- package/es/modules/dataManage/components/developModal/index.js +5 -5
- 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 +4 -2
- package/es/modules/dataManage/components/tablePlus.d.ts +8 -0
- package/es/modules/dataManage/components/tablePlus.js +364 -163
- package/es/modules/dataManage/detailedData/useColumns.js +1 -1
- 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 +7 -5
- package/es/modules/dataMap/component/rightDetail.js +94 -57
- 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 +3 -3
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
|
@@ -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
|
-
|
|
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;
|