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
752 B

  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. width: 100%;
  27. height: 100%;
  28. background-image: url('@/assets/buy.jpg');
  29. color: white;
  30. padding: 20px;
  31. }
  32. .enter{
  33. position: relative;
  34. top: 45px;
  35. left: 360px;
  36. }
  37. .img1{
  38. width: 70px;
  39. height: 60px;
  40. }
  41. </style>