@flexem/fc-gui 3.0.0-alpha.45 → 3.0.0-alpha.46

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
@@ -189,4 +189,9 @@
189
189
  ## 3.0.0-alpha.45(2022-10-24)
190
190
  ### Web端
191
191
  #### Features
192
- 1. FLEXCLOUD-2321: 小数位写值不应提示超时
192
+ 1. FLEXCLOUD-2321: 小数位写值不应提示超时
193
+
194
+ ## 3.0.0-alpha.46(2022-10-25)
195
+ ### Web端
196
+ #### Features
197
+ 1. 解决组态写值成功后没有反馈的问题
@@ -27598,7 +27598,7 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
27598
27598
  var _a;
27599
27599
  this.displayText = this.formatNumericalDisplayText(this.model.dataType, this.model.fractionDigits, value);
27600
27600
  this.updateDisplayText(this.formatDisplayTextUnit(this.displayText));
27601
- if (((_a = this.writeValueMmodalRef) === null || _a === void 0 ? void 0 : _a.content) && +this.displayText !== +this.showValue) {
27601
+ if (((_a = this.writeValueMmodalRef) === null || _a === void 0 ? void 0 : _a.content) && +this.displayText === +this.showValue) {
27602
27602
  this.writeValueMmodalRef.hide();
27603
27603
  this.writeValueMmodalRef.content.hideValidationErrorInfo();
27604
27604
  this.recordOperation(this.writeValue);