123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="welcome">
- <div class="btnR" @click.stop="$emit('close')">立即进入</div>
- </div>
- </template>
- <script>
- export default {
- data(){
- return {
- loading:true
- }
- },
- methods:{
- },
- mounted(){
- }
- }
- </script>
- <style lang="less">
- .welcome{
- width: 100%;
- height: 100%;
- background: url('../../assets/img/indexBac.jpg');
- background-size: 100% 100%;
- .btnR{
- font-size: 20px;
- border-radius: 8px;
- cursor: pointer;
- background-color: #b9412e;
- position: absolute;
- left: 50%;
- bottom: 80px;
- transform: translateX(-50%);
- width: 188px;
- height: 44px;
- line-height: 44px;
- text-align: center;
- }
- }
- </style>
|