courseMine.vue 813 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>
  10. export default {
  11. data() {
  12. return {
  13. btnList: [
  14. {
  15. id: "1",
  16. path: "",
  17. name: "观看记录"
  18. },
  19. {
  20. id: "2",
  21. path: "",
  22. name: "学分明细"
  23. },
  24. {
  25. id: "3",
  26. path: "",
  27. name: "我的收藏"
  28. },
  29. ]
  30. };
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .btn-list-item{
  36. background-color: #fff;
  37. width: 100%;
  38. margin: 20rpx 0;
  39. padding: 20rpx 25rpx;
  40. display: flex;
  41. justify-content: space-between;
  42. border-radius: 10rpx;
  43. border: 1px solid rgba(211, 211, 211, 0.5);
  44. color: #000;
  45. }
  46. </style>