@flexem/fc-gui 3.0.0-alpha.58 → 3.0.0-alpha.59

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
@@ -235,4 +235,9 @@
235
235
  ## 3.0.0-alpha.58(2023-01-09)
236
236
  ### Web端
237
237
  #### Features
238
- 1. FLEXCLOUD-2447 通讯问题
238
+ 1. FLEXCLOUD-2447 通讯问题
239
+
240
+ ## 3.0.0-alpha.59(2023-01-19)
241
+ ### Web端
242
+ #### Features
243
+ 1. FLEXCLOUD-2461 manager变量属性为只写,云组态组件属性为读写,无法写值“0”
@@ -27562,7 +27562,7 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
27562
27562
  const writeValue = this.dataTypeService.formatToDecimal(this.model.version, result.value, this.model.dataType);
27563
27563
  this.writeValue = writeValue;
27564
27564
  this.showValue = result.showValue;
27565
- if (+this.displayText !== +this.showValue) {
27565
+ if (+this.displayText !== +this.showValue || result.variableRwType === variableRwTypeEnum.witer) {
27566
27566
  if (this.numericalOperation || result.enableNumericalOperation || result.isNumericalOperation || result.variableRwType === variableRwTypeEnum.witer) {
27567
27567
  this.writeValueMmodalRef.hide();
27568
27568
  }