35 lines
426 B
Vue
35 lines
426 B
Vue
|
<template>
|
|||
|
<view class="welcome">
|
|||
|
<image class="welcome_images" src="../../static/pageA/welcome_img.jpg" mode="aspectFill"></image>
|
|||
|
<!-- 倒计时(跳过) -->
|
|||
|
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
|
|||
|
}
|
|||
|
},
|
|||
|
onLoad() {
|
|||
|
|
|||
|
},
|
|||
|
methods: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style>
|
|||
|
.welcome {}
|
|||
|
|
|||
|
.welcome_images {
|
|||
|
width: 100%;
|
|||
|
position: fixed;
|
|||
|
width: 100%;
|
|||
|
height: 100%
|
|||
|
}
|
|||
|
</style>
|