courseFiles.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="page">
  3. <cu-custom :isBack="true" title="课程档案"></cu-custom>
  4. <view class="cu-list box-shadow menu">
  5. <view class="cu-item arrow margin-top-xs" v-for="file in list" :key="file.id" @tap="goto('fileDetail', file)">
  6. <view class="content margin-left-sm">
  7. <view>{{ file.course_name }}</view>
  8. <star-rating name="serviceNum" :score="file.level" :max="file.max_level"></star-rating>
  9. </view>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. import { _getStudentFiles } from '@/api/course'
  16. import starRating from '@/components/star-rating.vue'
  17. export default {
  18. components: {
  19. starRating
  20. },
  21. data() {
  22. return {
  23. key: '课程档案',
  24. params: {
  25. page: 1
  26. },
  27. list: [],
  28. ability: []
  29. }
  30. },
  31. onLoad() {
  32. this.get_list()
  33. },
  34. methods: {
  35. get_list() {
  36. _getStudentFiles(this.params).then(res => {
  37. this.list = res.data.list
  38. this.ability = res.data.ability
  39. })
  40. },
  41. goto(page, file) {
  42. let ability = file.ability
  43. .split(',')
  44. .filter(s => s)
  45. .map(item => {
  46. const ab = this.ability.find(e => Number(e.id) === Number(item))
  47. const score = file.ability_total[item] || 0
  48. return {
  49. id: item,
  50. name: ab.name,
  51. score: score
  52. }
  53. })
  54. this.$set(file, 'ability', ability)
  55. this.globalNavigateTo(page, { file: JSON.stringify(file) })
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped></style>