2020-06-01 03:41:09 +00:00
|
|
|
|
<template>
|
|
|
|
|
<view class="welcome">
|
|
|
|
|
<!-- 倒计时(跳过) -->
|
2020-06-02 00:49:13 +00:00
|
|
|
|
<remaining></remaining>
|
2020-06-01 03:41:09 +00:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-06-02 00:49:13 +00:00
|
|
|
|
import remaining from '@/components/remaining/remaining';
|
2020-06-01 03:41:09 +00:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2020-06-02 00:49:13 +00:00
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
mounted(){
|
|
|
|
|
},
|
|
|
|
|
components:{}
|
2020-06-01 03:41:09 +00:00
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.welcome {}
|
2020-06-02 00:49:13 +00:00
|
|
|
|
.welcome_jumpes{
|
|
|
|
|
width: 90rpx;
|
|
|
|
|
height: 35rpx;
|
|
|
|
|
opacity:0.5;
|
|
|
|
|
border-radius:18rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 37rpx;
|
|
|
|
|
top: 34rpx;
|
|
|
|
|
font-size:20rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 35rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #C4CAC6;
|
|
|
|
|
}
|
2020-06-01 03:41:09 +00:00
|
|
|
|
.welcome_images {
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%
|
|
|
|
|
}
|
|
|
|
|
</style>
|