34 lines
743 B
Vue
34 lines
743 B
Vue
<template>
|
||
<view class="update_page">
|
||
<view class="update_page_txt">尊敬的用戶我們在做DAPP安全測試,預計24小時完成,錢包有變化的將在完成測試後恢復數據,給你帶來不變請諒解。</view>
|
||
<!-- 熱更新 -->
|
||
<upVersion></upVersion>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import upVersion from "@/components/am-upVersion/am-upVersion.vue";
|
||
export default{
|
||
components:{
|
||
upVersion
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.update_page{
|
||
width: 100vw;
|
||
height: 100vh;
|
||
.update_page_txt{
|
||
width: 100%;
|
||
height: 100%;
|
||
display: flex;
|
||
text-align: center;
|
||
align-items: center;
|
||
background-color: #3d4175;
|
||
color: #fff;
|
||
padding: 0 10px;
|
||
box-sizing: border-box;
|
||
}
|
||
}
|
||
</style> |