95 lines
2.4 KiB
Vue
95 lines
2.4 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">Due to system server upgrades, We will be upgrading from 9:30 am Hong Kong time on Friday, March 17 until further notice. During this period, access to the AiDA system will be temporarily unavailable.<br> We apologize for any inconvenience this may cause and appreciate your understanding.</div>
|
|
<!-- <div class="upgrade-content-textab">Due to system server upgrades, we will carry out repairs on Friday, March 17th, from 9:30 AM to 16:00 PM Hong Kong time. During this period, access to the AiDA system will be temporarily unavailable.<br> We apologize for any inconvenience this may cause and appreciate your understanding.</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>
|