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
752 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{
width: 100%;
height: 100%;
background-image: url('@/assets/buy.jpg');
color: white;
padding: 20px;
}
.enter{
position: relative;
top: 45px;
left: 360px;
}
.img1{
width: 70px;
height: 60px;
}
</style>