courseMine.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="container">
  3. <view class="btn-list-item" v-for="(btn,index) in btnList" :key="index" @click="toPage(btn.path)">
  4. <text>{{btn.name}}</text>
  5. <u-icon name="arrow-right" size="20"></u-icon>
  6. </view>
  7. </view>
  8. </template>
  9. <script setup>
  10. import {
  11. ref
  12. } from 'vue'
  13. import {
  14. onLoad
  15. } from '@dcloudio/uni-app'
  16. const btnList = ref([{
  17. id: "1",
  18. path: "/pages/goOnEdu/course/courseMine/mineRecord/mineRecord",
  19. name: "观看记录"
  20. },
  21. {
  22. id: "2",
  23. path: "/pages/goOnEdu/course/courseMine/mineCredits/mineCredits",
  24. name: "学分明细"
  25. },
  26. {
  27. id: "3",
  28. path: "/pages/goOnEdu/course/courseMine/mineFavi/mineFavi",
  29. name: "我的收藏"
  30. },
  31. ]);
  32. const toPage = (url) => {
  33. uni.navigateTo({
  34. url:url
  35. })
  36. }
  37. onLoad(() => {
  38. console.log('课程-我的页面')
  39. })
  40. </script>
  41. <style lang="scss" scoped>
  42. .btn-list-item {
  43. background-color: #fff;
  44. width: 100%;
  45. margin: 20rpx 0;
  46. padding: 20rpx 25rpx;
  47. display: flex;
  48. justify-content: space-between;
  49. border-radius: 10rpx;
  50. border: 1px solid rgba(211, 211, 211, 0.5);
  51. color: #000;
  52. }
  53. </style>