@flexem/fc-gui 3.0.0-alpha.92 → 3.0.0-alpha.93
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 +6 -1
- package/bundles/@flexem/fc-gui.umd.js +12 -1
- package/bundles/@flexem/fc-gui.umd.js.map +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js +4 -4
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/modal/write-value/write-value-modal.component.js +12 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -413,4 +413,9 @@
|
|
|
413
413
|
## 3.0.0-alpha.92(2023-07-18)
|
|
414
414
|
### Web端
|
|
415
415
|
#### Features
|
|
416
|
-
1. FLEXCLOUD-2710 【氚云20230621000600】组态历史曲线表:历史曲线增加点位标记,便于直观看到曲线采样点的变化
|
|
416
|
+
1. FLEXCLOUD-2710 【氚云20230621000600】组态历史曲线表:历史曲线增加点位标记,便于直观看到曲线采样点的变化
|
|
417
|
+
|
|
418
|
+
## 3.0.0-alpha.93(2023-07-21)
|
|
419
|
+
### Web端
|
|
420
|
+
#### Features
|
|
421
|
+
1. FLEXCLOUD-2741 【氚云20230714001409】模板的模拟功能,无法进行写值,一直提示提交中
|
|
@@ -41766,13 +41766,24 @@ let WriteValueModalComponent = class WriteValueModalComponent {
|
|
|
41766
41766
|
value = this.formatWriteValue();
|
|
41767
41767
|
}
|
|
41768
41768
|
}
|
|
41769
|
+
if (!this.args.releasedVariableService) {
|
|
41770
|
+
this.onClosed({
|
|
41771
|
+
value: value,
|
|
41772
|
+
showValue: showValue,
|
|
41773
|
+
enableNumericalOperation: false,
|
|
41774
|
+
isNumericalOperation: this.isNumericalOperation,
|
|
41775
|
+
variableRwType: 6
|
|
41776
|
+
});
|
|
41777
|
+
return;
|
|
41778
|
+
}
|
|
41769
41779
|
this.args.releasedVariableService.getVariableWithValueTransform(this.variableName).subscribe(result => {
|
|
41770
41780
|
const valueTransform = JSON.parse(result.valueTransform);
|
|
41771
41781
|
if (valueTransform.Type !== 0) {
|
|
41772
41782
|
this.isNumericalOperation = true;
|
|
41773
41783
|
}
|
|
41774
41784
|
this.onClosed({
|
|
41775
|
-
value
|
|
41785
|
+
value: value,
|
|
41786
|
+
showValue: showValue,
|
|
41776
41787
|
enableNumericalOperation: this.enableNumericalOperation,
|
|
41777
41788
|
isNumericalOperation: this.isNumericalOperation,
|
|
41778
41789
|
variableRwType: result.variableRwType
|