MinePage.vue 889 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="mine-container">
  3. <div class="header">
  4. <van-image
  5. round
  6. width="2.5rem"
  7. height="2.5rem"
  8. src="https://img01.yzcdn.cn/vant/cat.jpeg"
  9. />
  10. <h3>昵称</h3>
  11. </div>
  12. <div class="nav">
  13. <van-cell-group inset>
  14. <van-cell title="我的成绩" size="large" is-link to="/score" icon="edit"/>
  15. <van-cell title="我的地址" size="large" is-link icon="location-o"/>
  16. </van-cell-group>
  17. </div>
  18. </div>
  19. </template>
  20. <style scoped>
  21. .mine-container {
  22. background-color: #9bb771;
  23. position: absolute;
  24. top: 1rem;
  25. left: 0;
  26. right: 0;
  27. bottom: 1rem;
  28. }
  29. .header {
  30. margin-top: 0.5rem;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. .header h3 {
  36. font-size: 0.6rem;
  37. }
  38. </style>
  39. <script>
  40. export default {
  41. mounted() {
  42. this.$emit("changePage", "1004");
  43. },
  44. };
  45. </script>