|
@@ -97,13 +97,21 @@
|
|
</div>
|
|
</div>
|
|
<PasswordModal :modal-is-show="modalVisible" modal-title="提交" @handle-ok="handleResolve" @handle-cancel="handleReject" />
|
|
<PasswordModal :modal-is-show="modalVisible" modal-title="提交" @handle-ok="handleResolve" @handle-cancel="handleReject" />
|
|
<UpdatePassword @register="updatePwdRegister" @submit="handleChangePassword" />
|
|
<UpdatePassword @register="updatePwdRegister" @submit="handleChangePassword" />
|
|
- <BasicModal title="风门状态监测" :bodyStyle="{ height: '50px' }" style="top: 20px" :show-ok-btn="false" @register="warnRegister2">
|
|
|
|
|
|
+ <BasicModal title="风门状态监测" :mask="false" :bodyStyle="{ height: '50px' }" style="top: 20px" :show-ok-btn="false" @register="warnRegister2">
|
|
{{ warnModalText2 }}
|
|
{{ warnModalText2 }}
|
|
</BasicModal>
|
|
</BasicModal>
|
|
- <BasicModal title="压差状态监测" :bodyStyle="{ height: '50px' }" centered ok-text="下发联动控制指令" @register="warnRegister1">
|
|
|
|
|
|
+ <BasicModal
|
|
|
|
+ title="压差状态监测"
|
|
|
|
+ :mask="false"
|
|
|
|
+ :bodyStyle="{ height: '50px' }"
|
|
|
|
+ centered
|
|
|
|
+ ok-text="下发联动控制指令"
|
|
|
|
+ @ok="autoControl"
|
|
|
|
+ @register="warnRegister1"
|
|
|
|
+ >
|
|
{{ warnModalText1 }}
|
|
{{ warnModalText1 }}
|
|
</BasicModal>
|
|
</BasicModal>
|
|
- <BasicModal title="局扇状态监测" :bodyStyle="{ height: '50px' }" style="top: 420px" :show-ok-btn="false" @register="warnRegister3">
|
|
|
|
|
|
+ <BasicModal title="局扇状态监测" :mask="false" :bodyStyle="{ height: '50px' }" style="top: 420px" :show-ok-btn="false" @register="warnRegister3">
|
|
{{ warnModalText3 }}
|
|
{{ warnModalText3 }}
|
|
</BasicModal>
|
|
</BasicModal>
|
|
</a-spin>
|
|
</a-spin>
|
|
@@ -208,7 +216,8 @@
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
- const { avePressSetting, avePressLinkage, gateLinkage, formData, getAvePress, changePassword, linkageControl, settingControl } = usePressControl();
|
|
|
|
|
|
+ const { avePressSetting, avePressLinkage, gateLinkage, formData, getAvePress, changePassword, linkageControl, settingControl, autoControl } =
|
|
|
|
+ usePressControl();
|
|
|
|
|
|
const modalVisible = ref(false);
|
|
const modalVisible = ref(false);
|
|
|
|
|
|
@@ -330,14 +339,29 @@
|
|
// if (info.includes('局扇')) {
|
|
// if (info.includes('局扇')) {
|
|
// warnModalText3.value = info;
|
|
// warnModalText3.value = info;
|
|
// warnModal3.openModal();
|
|
// warnModal3.openModal();
|
|
|
|
+ // // notification.warn({
|
|
|
|
+ // // description: info,
|
|
|
|
+ // // message: '警报!',
|
|
|
|
+ // // duration: 0,
|
|
|
|
+ // // });
|
|
// }
|
|
// }
|
|
// if (info.includes('风门')) {
|
|
// if (info.includes('风门')) {
|
|
// warnModalText2.value = info;
|
|
// warnModalText2.value = info;
|
|
// warnModal2.openModal();
|
|
// warnModal2.openModal();
|
|
|
|
+ // // notification.warn({
|
|
|
|
+ // // description: info,
|
|
|
|
+ // // message: '警报!',
|
|
|
|
+ // // duration: 0,
|
|
|
|
+ // // });
|
|
// }
|
|
// }
|
|
// if (info.includes('压差')) {
|
|
// if (info.includes('压差')) {
|
|
// warnModalText1.value = info;
|
|
// warnModalText1.value = info;
|
|
// warnModal1.openModal();
|
|
// warnModal1.openModal();
|
|
|
|
+ // // notification.warn({
|
|
|
|
+ // // description: info,
|
|
|
|
+ // // message: '警报!',
|
|
|
|
+ // // duration: 0,
|
|
|
|
+ // // });
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|