109 lines
3.2 KiB
Vue
109 lines
3.2 KiB
Vue
<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>
|
||
<!-- <div class="upgrade-content-text">System upgrading</div> -->
|
||
<div class="upgrade-content-text">System maintenance</div>
|
||
<!-- 没有截至时间 -->
|
||
<!-- <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> -->
|
||
<!-- <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> -->
|
||
<!-- 有截至时间 -->
|
||
<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>
|
||
<br>
|
||
<br>
|
||
<br>
|
||
<!-- <div class="upgrade-content-textab">由于系统服务器维护,AiDA系统暂时无法访问。对于由此造成的任何不便,我们深表歉意,并感谢您的理解</div> -->
|
||
<div class="upgrade-content-textab">
|
||
由于系统服务器升级,我们将于1月23日21:00 至1月23日22:00进行升级。
|
||
<br>
|
||
在此期间,AiDA系统将暂时无法访问。给您带来的不便,我们深表歉意,并感谢您的理解</div>
|
||
</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;
|
||
}
|
||
.upgrade-content-textab{
|
||
position: absolute;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
font-size: 1.8rem;
|
||
color: #8e8e8e;
|
||
text-align: center;
|
||
}
|
||
}
|
||
|
||
}
|
||
</style>
|