This commit is contained in:
zmr900709
2020-06-01 11:41:09 +08:00
parent 7d86d2c74a
commit 2a27b13f90
35 changed files with 1557 additions and 3 deletions

34
pageA/welcome/welcome.vue Normal file
View File

@@ -0,0 +1,34 @@
<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>