Onlife/pages/updatePage.vue
2025-04-19 15:38:48 +08:00

34 lines
743 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>