page-learn-recommend.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <div class="contentBody">
  3. <van-list
  4. v-model="loading"
  5. :finished="finished"
  6. finished-text="没有更多了"
  7. @load="onLoad"
  8. >
  9. <template>
  10. <van-swipe class="my-swipe" :autoplay="3000" indicator-color="white">
  11. <van-swipe-item v-for="(item, index) in swiperList" :key="index">
  12. <van-image
  13. width="100%"
  14. height="100%"
  15. fit="cover"
  16. :src="item.imageUrl"
  17. :show-error="true"
  18. @click="clickCarousels(item)"
  19. />
  20. </van-swipe-item>
  21. </van-swipe>
  22. </template>
  23. <van-cell
  24. v-for="(contentItem, contentIndex) in contentList"
  25. :key="contentIndex"
  26. @click="chooseContent(contentIndex)"
  27. >
  28. <div slot="default" class="contentItemDiv" v-if="contentItem">
  29. <div class="contentItemTitleTitleRow">
  30. <div class="contentItemTitle">{{ contentItem.name }}</div>
  31. <div v-if="contentItem.isNeedStudyToday" class="contentItemstates">
  32. 今日必学
  33. </div>
  34. </div>
  35. <div class="contentItemDescription">
  36. <div class="contentItemDescriptionTime">
  37. {{
  38. formateDatesFun(contentItem.createdTime) ||
  39. contentItem.createdTime
  40. }}
  41. </div>
  42. <div class="contentItemDescriptionStudyNeedTime">
  43. 所需学习时间:{{
  44. getTimeHoursMinuteSecondsFun(contentItem.readTimeInSec)
  45. }}
  46. </div>
  47. </div>
  48. </div>
  49. </van-cell>
  50. </van-list>
  51. </div>
  52. </template>
  53. <script>
  54. import { mapState } from "vuex";
  55. export default {
  56. name: "page-learn-recommend",
  57. components: {},
  58. props: {
  59. // 轮播图的数据
  60. swiperList: null
  61. },
  62. data() {
  63. return {
  64. contentList: [],
  65. loading: false,
  66. finished: false
  67. };
  68. },
  69. computed: {
  70. ...mapState({
  71. chooseEngneeringWork: state => state.user.chooseEngneeringWork
  72. })
  73. },
  74. watch: {
  75. // 监听:工种
  76. chooseEngneeringWork(value) {
  77. if (value.value) {
  78. this.getNewsfeed(); // 查询子目录
  79. }
  80. }
  81. },
  82. created() {
  83. this.getNewsfeed();
  84. this.getCarousels();
  85. },
  86. mounted() {},
  87. methods: {
  88. // 查询轮播图
  89. getCarousels() {
  90. let params = { num: 4 };
  91. this.$_http
  92. .get(this.$_API.JTXT_GET_CAROUSELS, { params })
  93. .then(res => {
  94. console.log("----res--" + JSON.stringify(res));
  95. this.swiperList = res.data;
  96. })
  97. .catch(() => {
  98. this.$store.commit("toggleLoading", false);
  99. });
  100. },
  101. clickCarousels(item) {
  102. if (!item.materialId) return;
  103. this.$router.push({
  104. name: "learn-content",
  105. params: { materialId: item.materialId }
  106. });
  107. },
  108. // 查询子目录
  109. getNewsfeed() {
  110. let engineertypeid = "";
  111. if (this.chooseEngneeringWork) {
  112. engineertypeid = this.chooseEngneeringWork.id;
  113. }
  114. let params = { engineertypeid: engineertypeid };
  115. this.$_http
  116. .get(this.$_API.JTXT_GET_NEWSFEED, { params })
  117. .then(res => {
  118. this.formatNeedStudyTodayFun(res.data);
  119. this.finished = true;
  120. })
  121. .catch(() => {
  122. this.$store.commit("toggleLoading", false);
  123. });
  124. },
  125. // 判断是否今日必学
  126. formatNeedStudyTodayFun(datas) {
  127. let date = new Date();
  128. let year = date.getFullYear();
  129. let month = date.getMonth() + 1;
  130. month = month >= 10 ? "" + month : "0" + month;
  131. let day = date.getDate();
  132. let todayStr = year + month + day;
  133. datas.forEach(item => {
  134. item.tags.forEach(itemChild => {
  135. if (itemChild === todayStr) {
  136. item.isNeedStudyToday = true;
  137. }
  138. });
  139. });
  140. this.contentList = datas;
  141. },
  142. onLoad() {},
  143. chooseContent(index) {
  144. this.$router.push({
  145. name: "learn-content",
  146. params: { materialId: this.contentList[index].id }
  147. });
  148. }
  149. }
  150. };
  151. </script>
  152. <style lang="scss" scoped>
  153. @import "~@/styles/mixin";
  154. .contentBody {
  155. background-color: #fff;
  156. .contentItemDiv {
  157. width: 100%;
  158. .contentItemTitle {
  159. font-size: 0.65rem;
  160. }
  161. .contentItemTitleTitleRow {
  162. width: 100%;
  163. display: flex;
  164. justify-content: space-between;
  165. align-items: center;
  166. .contentItemTitle {
  167. text-align: left;
  168. font-size: 0.65rem;
  169. color: #000;
  170. white-space: nowrap;
  171. text-overflow: ellipsis;
  172. overflow: hidden;
  173. word-wrap:break-word;
  174. white-space:pre-wrap;
  175. display: -webkit-box;
  176. -webkit-box-orient: ho;
  177. -webkit-line-clamp:10;
  178. }
  179. .contentItemstates {
  180. font-size: 0.6rem;
  181. color: #f56c6c;
  182. border-radius: 0.2rem;
  183. margin-left: 0.5rem;
  184. flex-wrap: nowrap;
  185. white-space: nowrap;
  186. }
  187. }
  188. .contentItemDescription {
  189. margin-top: 0.5rem;
  190. display: flex;
  191. justify-content: space-between;
  192. align-items: center;
  193. .contentItemDescriptionTime {
  194. color: #696969;
  195. font-size: 0.55rem;
  196. }
  197. .contentItemDescriptionStudyNeedTime {
  198. color: #0088e9;
  199. font-size: 0.55rem;
  200. }
  201. }
  202. }
  203. .my-swipe .van-swipe-item {
  204. background-color: #7cc8ff;
  205. height: 10rem;
  206. }
  207. }
  208. </style>