deming/pageA/welcome/welcome.vue
2020-06-02 08:49:13 +08:00

51 lines
690 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>
<view class="welcome">
<!-- 倒计时跳过 -->
<remaining></remaining>
</view>
</template>
<script>
import remaining from '@/components/remaining/remaining';
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
},
mounted(){
},
components:{}
}
</script>
<style>
.welcome {}
.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;
}
.welcome_images {
width: 100%;
position: fixed;
width: 100%;
height: 100%
}
</style>