@flexem/fc-gui 3.0.0-alpha.67 → 3.0.0-alpha.68
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/CHANGELOG.md
CHANGED
|
@@ -283,9 +283,14 @@
|
|
|
283
283
|
2. FLEXCLOUD-2493 首次打开模板,字体属性下拉框字被填充框遮挡
|
|
284
284
|
3. FLEXCLOUD-2495 模板中添加未关联告警的告警表元件,导致不显示组态中配置的画面
|
|
285
285
|
4. FLEXCLOUD-2497 报警表表头、表格内容向右对齐后格式错误,不显示表格内容
|
|
286
|
-
5. FLEXCLOUD-
|
|
287
|
-
6. FLEXCLOUD-
|
|
288
|
-
7. FLEXCLOUD-
|
|
289
|
-
8. FLEXCLOUD-
|
|
290
|
-
9. FLEXCLOUD-
|
|
291
|
-
|
|
286
|
+
5. FLEXCLOUD-2500 告警表配置当前报警,无数据时点击切换分页按钮,报错“您的请求无效!”
|
|
287
|
+
6. FLEXCLOUD-2501 模拟组态画面、刷新组态不应闪烁原型画面
|
|
288
|
+
7. FLEXCLOUD-2502 编辑告警表时,应保留上一次告警组与告警等级的选择
|
|
289
|
+
8. FLEXCLOUD-2503 切换告警类型报警勾选框应重置,让客户手动勾选告警监控点
|
|
290
|
+
9. FLEXCLOUD-2505 组态元件有a控制权限,用户有a组态权限,设备仪表盘中不显示告警元件
|
|
291
|
+
|
|
292
|
+
## 3.0.0-alpha.68(2023-03-07)
|
|
293
|
+
### Web端
|
|
294
|
+
#### Bug Fix
|
|
295
|
+
1. FLEXCLOUD-2495 模板中添加未关联告警的告警表元件,导致不显示组态中配置的画面
|
|
296
|
+
2. FLEXCLOUD-2500 告警表配置当前报警,无数据时点击切换分页按钮,报错“您的请求无效!”
|
|
@@ -40064,6 +40064,7 @@ class alarm_element_AlarmElement extends conditional_display_element_Conditional
|
|
|
40064
40064
|
this.page = 0;
|
|
40065
40065
|
this.totalCount = 0;
|
|
40066
40066
|
this.pageSize = 5;
|
|
40067
|
+
this.rootElement.selectAll('*').remove();
|
|
40067
40068
|
this.logger = injector.get(logger["b" /* LOGGER_SERVICE_TOKEN */]);
|
|
40068
40069
|
this.localization = injector.get(_tmp_localization["b" /* LOCALIZATION */]);
|
|
40069
40070
|
this.variableCommunicator = variableCommunicator;
|
|
@@ -40143,7 +40144,6 @@ class alarm_element_AlarmElement extends conditional_display_element_Conditional
|
|
|
40143
40144
|
return timePeriods;
|
|
40144
40145
|
}
|
|
40145
40146
|
init() {
|
|
40146
|
-
this.rootElement.selectAll('*').remove();
|
|
40147
40147
|
if (this.model.filterSetting.alarmType) {
|
|
40148
40148
|
const input = new _tmp_config["c" /* GetAlarmsArgs */](this.model.filterSetting.detailsData, this.startTime, this.endTime, this.pageSize, this.page * this.pageSize);
|
|
40149
40149
|
this.alarmsStore.getHistoryAlarms(input).subscribe(result => {
|