@flexem/fc-gui 3.0.0-alpha.53 → 3.0.0-alpha.55

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
@@ -214,4 +214,10 @@
214
214
  ## 3.0.0-alpha.53(2022-11-04)
215
215
  ### Web端
216
216
  #### Features
217
- 1. FLEXCLOUD-2347【Web端】组态页面:组态页面监控点比较多,导致组态页面切换不生效问题
217
+ 1. FLEXCLOUD-2347【Web端】组态页面:组态页面监控点比较多,导致组态页面切换不生效问题
218
+
219
+ ## 3.0.0-alpha.55(2022-11-07)
220
+ ### Web端
221
+ #### Features
222
+ 1. FLEXCLOUD-2347【Web端】组态页面:组态页面监控点比较多,导致组态页面切换不生效问题
223
+ -- 接口变更,请求变量是否缩放使用另外一个接口
@@ -41210,9 +41210,8 @@ let WriteValueModalComponent = class WriteValueModalComponent {
41210
41210
  value = this.formatWriteValue();
41211
41211
  }
41212
41212
  }
41213
- this.args.releasedVariableService.getVariablesWithValueTransform().subscribe(result => {
41214
- const variablesTransform = result.filter(item => item.name === this.args.variableName);
41215
- if (variablesTransform && variablesTransform.length && JSON.parse(variablesTransform[0].valueTransform).Type !== 0) {
41213
+ this.args.releasedVariableService.getVariableWithValueTransform(this.variableName).subscribe(result => {
41214
+ if (JSON.parse(result.valueTransform).Type !== 0) {
41216
41215
  this.isNumericalOperation = true;
41217
41216
  }
41218
41217
  this.onClosed({ value, showValue, enableNumericalOperation: this.enableNumericalOperation, isNumericalOperation: this.isNumericalOperation });