courseMine.vue 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="container">
  3. <view class="btn-list-item" v-for="(btn,index) in btnList" :key="index">
  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: "",
  19. name: "观看记录"
  20. },
  21. {
  22. id: "2",
  23. path: "",
  24. name: "学分明细"
  25. },
  26. {
  27. id: "3",
  28. path: "",
  29. name: "我的收藏"
  30. },
  31. ]);
  32. onLoad(() => {
  33. console.log('课程-我的页面')
  34. })
  35. </script>
  36. <style lang="scss" scoped>
  37. .btn-list-item {
  38. background-color: #fff;
  39. width: 100%;
  40. margin: 20rpx 0;
  41. padding: 20rpx 25rpx;
  42. display: flex;
  43. justify-content: space-between;
  44. border-radius: 10rpx;
  45. border: 1px solid rgba(211, 211, 211, 0.5);
  46. color: #000;
  47. }
  48. </style>