deming/pageA/welcome/welcome.vue

50 lines
690 B
Vue
Raw Normal View History

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 {
}
},
2020-07-09 08:35:23 +00:00
onLoad() {
2020-06-01 03:41:09 +00:00
},
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>