You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
792 B
42 lines
792 B
<template>
|
|
<div class="home">
|
|
<div class="enter" @click="enter">
|
|
<img src="../assets/huiche.png" alt="返回上一页" class="img1">
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
name:'BuyView',
|
|
data(){
|
|
return{
|
|
|
|
};
|
|
},
|
|
methods:{
|
|
enter(){
|
|
this.$router.push({
|
|
name:'ReportView'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.home{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url('@/assets/buy.jpg');
|
|
color: white;
|
|
padding: 20px;
|
|
background-size: cover;
|
|
}
|
|
.img1{
|
|
position: absolute;
|
|
top: 6.5vh;
|
|
left: 39vh;
|
|
width: 8vh;
|
|
height: 7vh;
|
|
}
|
|
</style>
|