|
@@ -149,9 +149,9 @@ const outdooForm = ref<OutdooForm>({
|
|
regionId: undefined,
|
|
regionId: undefined,
|
|
outsideDevGroupId: undefined,
|
|
outsideDevGroupId: undefined,
|
|
outsideDevId: undefined,
|
|
outsideDevId: undefined,
|
|
- outsideTempParamCode: '',
|
|
|
|
- outsideHumidityParamCode: '',
|
|
|
|
- outsideEnthalpyParamCode: '',
|
|
|
|
|
|
+ outsideTempParamCode: undefined,
|
|
|
|
+ outsideHumidityParamCode: undefined,
|
|
|
|
+ outsideEnthalpyParamCode: undefined,
|
|
});
|
|
});
|
|
|
|
|
|
const headerStyle: CSSProperties = {
|
|
const headerStyle: CSSProperties = {
|
|
@@ -427,9 +427,9 @@ const getDeviceParamsList = (id: number, judgment: number, show: boolean) => {
|
|
} else if (judgment === HumitureType.Outdoor) {
|
|
} else if (judgment === HumitureType.Outdoor) {
|
|
outdoorDeviceParamsList.value = data;
|
|
outdoorDeviceParamsList.value = data;
|
|
if (show) {
|
|
if (show) {
|
|
- outdooForm.value.outsideEnthalpyParamCode = '';
|
|
|
|
- outdooForm.value.outsideHumidityParamCode = '';
|
|
|
|
- outdooForm.value.outsideTempParamCode = '';
|
|
|
|
|
|
+ outdooForm.value.outsideEnthalpyParamCode = undefined;
|
|
|
|
+ outdooForm.value.outsideHumidityParamCode = undefined;
|
|
|
|
+ outdooForm.value.outsideTempParamCode = undefined;
|
|
}
|
|
}
|
|
} else if (judgment === HumitureType.FreshAir) {
|
|
} else if (judgment === HumitureType.FreshAir) {
|
|
freshDeviceParamsList.value = data;
|
|
freshDeviceParamsList.value = data;
|
|
@@ -466,9 +466,9 @@ const getDevicesGroupList = (id: number, judgment: number, show: boolean) => {
|
|
outdoorDevicesList.value = records;
|
|
outdoorDevicesList.value = records;
|
|
if (show) {
|
|
if (show) {
|
|
outdooForm.value.outsideDevId = undefined;
|
|
outdooForm.value.outsideDevId = undefined;
|
|
- outdooForm.value.outsideEnthalpyParamCode = '';
|
|
|
|
- outdooForm.value.outsideHumidityParamCode = '';
|
|
|
|
- outdooForm.value.outsideTempParamCode = '';
|
|
|
|
|
|
+ outdooForm.value.outsideEnthalpyParamCode = undefined;
|
|
|
|
+ outdooForm.value.outsideHumidityParamCode = undefined;
|
|
|
|
+ outdooForm.value.outsideTempParamCode = undefined;
|
|
}
|
|
}
|
|
} else if (judgment === HumitureType.FreshAir) {
|
|
} else if (judgment === HumitureType.FreshAir) {
|
|
freshDevicesList.value = records;
|
|
freshDevicesList.value = records;
|