Files
aida_front/src/views/Upgrade.vue

109 lines
3.2 KiB
Vue
Raw Normal View History

2024-01-05 14:12:03 +08:00
<template>
<div class="aida-upgradePage">
<div class="upgrade-content">
<div class="upgrade-content-icon">
<i class="fi fi-rr-settings"></i>
</div>
<div class="upgrade-content-wire"></div>
2024-12-01 13:27:49 +08:00
<!-- <div class="upgrade-content-text">System upgrading</div> -->
<div class="upgrade-content-text">System maintenance</div>
2024-07-09 11:09:20 +08:00
<!-- 没有截至时间 -->
2025-12-19 21:36:42 +08:00
<!-- <div class="upgrade-content-textab">The AiDA system cannot be accessed temporarily due to system server maintenance. We apologize for any inconvenience this may cause and thank you for your understanding.</div> -->
2024-12-01 13:27:49 +08:00
<!-- <div class="upgrade-content-textab">Due to the system server upgrade, we will start the upgrade from 9:30 am Hong Kong time on the weekend of October 20th until October 21st. During this time,<br> the AiDA system will be temporarily inaccessible. We apologize for any inconvenience this may cause and thank you for your understanding.</div> -->
2024-07-09 11:09:20 +08:00
<!-- 有截至时间 -->
<div class="upgrade-content-textab">
Due to system server upgrades, maintenance will be carried out from 21:00 to 22:00 on January 19, 2026 (today).
<br>
The AiDA system will be temporarily unavailable during this period. We sincerely apologize for any inconvenience caused and thank you for your understanding.</div>
2025-02-04 18:52:54 +08:00
<br>
<br>
<br>
2025-12-19 21:36:42 +08:00
<!-- <div class="upgrade-content-textab">由于系统服务器维护AiDA系统暂时无法访问对于由此造成的任何不便我们深表歉意并感谢您的理解</div> -->
<div class="upgrade-content-textab">
由于系统服务器升级我们将于1月23日21:00 至1月23日22:00进行升级
<br>
在此期间AiDA系统将暂时无法访问给您带来的不便我们深表歉意并感谢您的理解</div>
2024-01-05 14:12:03 +08:00
</div>
</div>
</template>
<script>
import { defineComponent,h,ref} from "vue";
export default defineComponent({
data(){
return{
}
},
mounted(){
},
methods:{
}
})
</script>
<style scoped lang="less">
.aida-upgradePage{
height: 100vh;
width: 100vw;
position: relative;
--upgradePageColor:#000;
.upgrade-content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
.upgrade-content-icon{
overflow: hidden;
margin-top: -50%;
// padding: 0 2rem;
// border-bottom: 1rem solid ;
i{
height: 50%;
transform: translateY(50%);
font-size: 50rem;
display: flex;
animation: rotate 7s infinite linear;
color: var(--upgradePageColor);
@keyframes rotate {
from{
transform: translateY(50%) rotate(0deg);
}
to{
transform: translateY(50%) rotate(360deg);
}
}
}
}
.upgrade-content-wire{
width: 120%;
height: 1rem;
background: var(--upgradePageColor);
position: absolute;
left: 50%;
transform: translateX(-50%);
border-radius: 1rem;
}
.upgrade-content-text{
text-align: center;
margin-top: 2rem;
font-size: 4rem;
font-weight: 600;
}
2024-01-25 17:15:20 +08:00
.upgrade-content-textab{
position: absolute;
white-space: nowrap;
overflow: hidden;
left: 50%;
transform: translateX(-50%);
font-size: 1.8rem;
color: #8e8e8e;
2024-03-04 10:02:55 +08:00
text-align: center;
2024-01-25 17:15:20 +08:00
}
2024-01-05 14:12:03 +08:00
}
}
</style>