Files
apt-nl-new/src/pages/Preload.vue
2023-10-18 14:44:29 +08:00

50 lines
1007 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>
<div class="con">
<img class="logo" src="../images/aio/logo_0.png"/>
<div class="box1"><img src="../images/aio/car1.png"></div>
<div class="box2">
<p class="text1">欢迎使用诺力智能搬运车</p>
<p class="text2">请稍等系统启动中</p>
</div>
</div>
</template>
<script>
export default {
name: 'PreLoad',
mounted () {
setTimeout(() => {
this.$router.replace('/login')
}, 1000)
}
}
</script>
<style lang="stylus" scoped>
.con
width 100%
height 100%
background center center / 100% 100% url(../images/aio/bg.png) no-repeat
.logo
width 5.96rem
// height .6rem
margin .71rem 0 0 3.84rem
.box1
float left
margin 2.02rem 0 0 2.86rem
img
width 2.28rem
height 2.55rem
.box2
float left
margin 2.64rem 0 0 .38rem
.text1
font-size .48rem
color #E74F19
line-height .7rem
.text2
font-size .36rem
color #464646
line-height .7rem
</style>