train.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <view class="">
  3. <u-sticky bgColor="#fff" style='padding: 0 30rpx;'>
  4. <u-tabs @click='changeFn' keyName='categoryName' :current='tabsIndex' :list="columnSort" lineWidth='40'
  5. :scrollable='true'>
  6. </u-tabs>
  7. <view style="padding: 20rpx 0;">
  8. <u-search @search='searchFn' @custom='searchFn' bgColor='#f2f2f2' clearabled show-action shape="square"
  9. placeholder="搜索" v-model="entryName">
  10. </u-search>
  11. </view>
  12. </u-sticky>
  13. <br>
  14. <view @click="toCurriculumFn(v.disciplineId)" class="list" v-for="(v,i) in dataList" :key="i">
  15. <view class="list_left">
  16. <image :src="$imageUrl + v.imageUrl" style="width: 100%;height: 100%;" mode=""></image>
  17. </view>
  18. <view class="list_right">
  19. <view class="" style="font-size: 28rpx;">
  20. {{v.disciplineName}}
  21. </view>
  22. <view class="">
  23. 产品品牌:{{v.brandName}}
  24. </view>
  25. <view class="">
  26. {{v.disciplineOverview}}
  27. </view>
  28. <view class="" style="color: #999;">
  29. 2022-11-01
  30. </view>
  31. </view>
  32. </view>
  33. <view v-show="showEmpty" class="" style="width: 100%; height: 100%;display: flex;justify-content: center;">
  34. <u-empty mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png">
  35. </u-empty>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. showEmpty: false,
  44. columnSort: [],
  45. options: {},
  46. pageNum: 1,
  47. dataList: [],
  48. entryName: '',
  49. productCategoryId: '',
  50. tabsIndex: '',
  51. };
  52. },
  53. async onPullDownRefresh() {
  54. this.pageNum = 1
  55. let res = await this.getData(this.options)
  56. this.dataList = res
  57. uni.stopPullDownRefresh()
  58. },
  59. async onReachBottom() {
  60. this.pageNum++
  61. await this.getData(this.options)
  62. },
  63. async onLoad(options) {
  64. this.options = options
  65. this.productCategoryId = options.productCategoryId
  66. await this.getData(options)
  67. await this.getColumnSorting()
  68. this.columnSort.forEach((v, i) => {
  69. if (v.productCategoryId === options.productCategoryId) {
  70. this.tabsIndex = i
  71. }
  72. })
  73. },
  74. methods: {
  75. //跳转课程详情
  76. toCurriculumFn(disciplineId) {
  77. uni.navigateTo({
  78. url: `pages/learn/components/learnDetail?disciplineId=${disciplineId}`
  79. })
  80. },
  81. //搜索
  82. async searchFn() {
  83. this.pageNum = 1
  84. let res = await this.getData(this.options)
  85. this.dataList = res
  86. },
  87. //分类
  88. async changeFn(value) {
  89. this.productCategoryId = value.productCategoryId
  90. this.pageNum = 1
  91. let res = await this.getData(this.options)
  92. this.dataList = res
  93. },
  94. //获取分类数据
  95. async getColumnSorting() {
  96. let params = {
  97. "brandCodes": [],
  98. "columnId": this.options.columnId
  99. }
  100. let {
  101. data
  102. } = await this.$api.post('/homepage/columnsorting', params)
  103. this.columnSort = data
  104. },
  105. //获取列表数据
  106. async getData(options) {
  107. let params = {
  108. "columnId": options.columnId,
  109. "pageNum": this.pageNum,
  110. "pageSize": 10,
  111. "productCategoryId": this.productCategoryId,
  112. "entryName": this.entryName
  113. }
  114. let {
  115. data
  116. } = await this.$api.post('/homepage/disciplines-search', params)
  117. if (data.records.length === 0) {
  118. this.showEmpty = true
  119. } else {
  120. this.showEmpty = false
  121. }
  122. this.dataList = [...this.dataList, ...data.records]
  123. return data.records
  124. }
  125. }
  126. }
  127. </script>
  128. <style lang="scss" scoped>
  129. .list {
  130. display: flex;
  131. justify-content: space-between;
  132. margin: 0 30rpx 20rpx;
  133. padding: 30rpx;
  134. background: #ffffff;
  135. border-radius: 20rpx;
  136. .list_left {
  137. width: 140rpx;
  138. }
  139. .list_right {
  140. padding-left: 18rpx;
  141. flex: 1;
  142. font-size: 24rpx;
  143. color: #333;
  144. line-height: 36rpx;
  145. // background-color: #ffff7f;
  146. }
  147. }
  148. </style>