添加看板

main
suixy 3 days ago
parent b2f017ee01
commit b784c63cd8

@ -341,7 +341,7 @@ const confirmAlarmDetail = async () => {
}
};
void connectAlarmReminder(() => {});
// void connectAlarmReminder(() => {});
onAlarmReminderOvertime((device) => {
const monitorId = String(device?.monitorId ?? '');
if (!monitorId) {

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 KiB

@ -15,6 +15,7 @@ interface ImportMetaEnv {
VITE_APP_SNAILJOB_ADMIN: string;
VITE_APP_ENV: string;
VITE_APP_ELECTRON: string;
VITE_APP_PAKEPLUS: string;
VITE_APP_ENCRYPT: string;
VITE_APP_RSA_PUBLIC_KEY: string;
VITE_APP_RSA_PRIVATE_KEY: string;

@ -0,0 +1,25 @@
<template>
<main class="board-page">
<img class="board-device" src="@/assets/board/index/device.png" alt="" />
</main>
</template>
<style lang="scss" scoped>
.board-page {
position: fixed;
inset: 0;
z-index: 1002;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: url('@/assets/board/index/bg.jpg') center / cover no-repeat;
}
.board-device {
display: block;
width: 95%;
max-height: 95vh;
object-fit: contain;
}
</style>
Loading…
Cancel
Save