mineCredits.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view class="container">
  3. <view class="list-box">
  4. <view class="list-item-box">
  5. <view class="list-item">
  6. 学习年度
  7. </view>
  8. <view class="list-item">
  9. 会员网络教育<br/>完成学分情况
  10. </view>
  11. <view class="list-item">
  12. 年检情况
  13. </view>
  14. <view class="list-item">
  15. 是否完成观看
  16. </view>
  17. </view>
  18. <view class="list-item-box" v-for="item in list" :key="item.id">
  19. <view class="list-item">
  20. {{item.date}}
  21. </view>
  22. <view class="list-item">
  23. {{item.score}}/{{item.targetScore}}
  24. </view>
  25. <view class="list-item" v-html="item.status ? '完成学分' : '学分未达标,<br/>不能申请年检'"></view>
  26. <view class="list-item">
  27. <view class="button" :class="[item.isWatched ? 'primary' : 'error']" @click="onJiaoFei(item)">
  28. {{item.isWatched ? '已完成观看' : '未完成'}}
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script setup>
  36. import { ref } from 'vue'
  37. import { onLoad } from '@dcloudio/uni-app'
  38. const list = ref([])
  39. const initList = () => {
  40. list.value = [{
  41. id: '01',
  42. date: '2024(2024.5-2024.30)',
  43. score: '24',
  44. targetScore: '24',
  45. status: 1,
  46. isWatched: 1
  47. },
  48. {
  49. id: '02',
  50. date: '2023(2023.5-2023.30)',
  51. score: '0',
  52. targetScore: '24',
  53. status: 0,
  54. isWatched: 0
  55. },
  56. {
  57. id: '03',
  58. date: '2022(2022.5-2022.30)',
  59. score: '0',
  60. targetScore: '24',
  61. status: 0,
  62. isWatched: 0
  63. },
  64. {
  65. id: '04',
  66. date: '2021(2021.5-2021.30)',
  67. score: '0',
  68. targetScore: '24',
  69. status: 0,
  70. isWatched: 0
  71. },
  72. {
  73. id: '02',
  74. date: '2020(2020.5-2020.30)',
  75. score: '0',
  76. targetScore: '24',
  77. status: 0,
  78. isWatched: 0
  79. }]
  80. }
  81. onLoad(() => {
  82. initList()
  83. console.log('onLoad')
  84. })
  85. </script>
  86. <style lang="scss">
  87. page{
  88. background-color: $uni-bg-color;
  89. }
  90. .container {
  91. // height: 100vh;
  92. width: 100vw;
  93. // background-color: #fff;
  94. padding: 0 20rpx env(safe-area-inset-bottom, 0);
  95. }
  96. .list-box {
  97. margin: 20rpx 20rpx;
  98. background-color: $uni-bg-color-grey;
  99. border-radius: $uni-card-border-radius;
  100. padding: 20rpx 15rpx;
  101. // margin-bottom: 30rpx;
  102. .list-item-box {
  103. &:first-child {
  104. border-bottom: 5rpx solid #E6E6E6;
  105. font-size: $uni-font-size-1;
  106. font-weight: bold;
  107. .list-item {
  108. width: 25%;
  109. text-align: center;
  110. &:last-child {
  111. color: #303133;
  112. font-weight: bold;
  113. }
  114. }
  115. }
  116. padding: 15rpx 0;
  117. text-align: center;
  118. font-size: $uni-font-size-3;
  119. font-weight: bold;
  120. display: flex;
  121. align-items: center;
  122. .list-item {
  123. width: 25%;
  124. text-align: center;
  125. &:last-child {
  126. color: $uni-text-color-inverse;
  127. font-weight: normal;
  128. }
  129. }
  130. .button {
  131. width: fit-content;
  132. border-radius: $uni-card-border-radius;
  133. margin: 0 auto;
  134. }
  135. .primary {
  136. padding: 5rpx 25rpx;
  137. background-color: $uni-color-primary;
  138. }
  139. .error {
  140. padding: 5rpx 15rpx;
  141. background-color: $uni-color-error;
  142. }
  143. }
  144. }
  145. </style>