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.

41 lines
792 B

2 months ago
2 months ago
2 months ago
  1. <template>
  2. <div class="home">
  3. <div class="enter" @click="enter">
  4. <img src="../assets/huiche.png" alt="返回上一页" class="img1">
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default{
  10. name:'BuyView',
  11. data(){
  12. return{
  13. };
  14. },
  15. methods:{
  16. enter(){
  17. this.$router.push({
  18. name:'ReportView'
  19. })
  20. }
  21. }
  22. }
  23. </script>
  24. <style scoped>
  25. .home{
  26. position: relative;
  27. width: 100%;
  28. height: 100%;
  29. background-image: url('@/assets/buy.jpg');
  30. color: white;
  31. padding: 20px;
  32. background-size: cover;
  33. }
  34. .img1{
  35. position: absolute;
  36. top: 6.5vh;
  37. left: 39vh;
  38. width: 8vh;
  39. height: 7vh;
  40. }
  41. </style>