|
@@ -448,6 +448,9 @@ const getDeviceListOptionsList = (id: number, show: boolean, runStatusParamCode:
|
|
|
const adddParametersDevice = (value: SelectValue, option: DefaultOptionType) => {
|
|
|
runStatusList.value = [];
|
|
|
inputType.value = option.type;
|
|
|
+ monitoringForm.value.runStatusConditionCode = undefined;
|
|
|
+ monitoringForm.value.runStatusConditionValue = undefined;
|
|
|
+
|
|
|
if (option.type === 1) {
|
|
|
option.candidates.forEach((item: string, index: number) => {
|
|
|
runStatusList.value.push({
|
|
@@ -1019,7 +1022,7 @@ onMounted(() => {
|
|
|
temperatureDifference.value = [];
|
|
|
await getParamAlgOperator();
|
|
|
paramAlgOperator.value.forEach((item) => {
|
|
|
- if (item.dictValueId === 250 || item.dictValueId === 251) {
|
|
|
+ if (item.dictEngValue === 'eq' || item.dictEngValue === 'ne') {
|
|
|
temperatureDifference.value.push(item);
|
|
|
}
|
|
|
});
|