page-learn-recommend.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <template>
  2. <div class="contentBody">
  3. <van-pull-refresh v-model="isLoading" @refresh="onRefresh">
  4. <van-list
  5. v-model="loading"
  6. :finished="finished"
  7. finished-text="没有更多了"
  8. @load="onLoad"
  9. >
  10. <template>
  11. <van-swipe class="my-swipe" :autoplay="3000" indicator-color="white">
  12. <van-swipe-item v-for="(item, index) in swiperList" :key="index">
  13. <van-image
  14. width="100%"
  15. height="100%"
  16. fit="cover"
  17. :src="item.imageUrl"
  18. :show-error="true"
  19. @click="clickCarousels(item)"
  20. />
  21. </van-swipe-item>
  22. </van-swipe>
  23. </template>
  24. <van-cell
  25. v-for="(contentItem, contentIndex) in contentList"
  26. :key="contentIndex"
  27. @click="chooseContent(contentIndex)"
  28. >
  29. <div slot="default" class="contentItemDiv" v-if="contentItem">
  30. <!-- 文章 -->
  31. <div
  32. v-if="contentItem.type == 'ARTICLE'"
  33. class="contentItemTitleTitleRow"
  34. >
  35. <div class="contentItemTitle">
  36. {{ contentItem.name }}
  37. </div>
  38. <div
  39. v-if="contentItem.isNeedStudyToday"
  40. class="contentItemstates"
  41. >
  42. 今日必学
  43. </div>
  44. </div>
  45. <!-- 视频 -->
  46. <div
  47. v-else-if="contentItem.type == 'VIDEO'"
  48. class="contentItemTitleTitleRow-video"
  49. >
  50. <div class="contentVideoTitle">
  51. <div class="contentVideoTitleTxt">
  52. <img :src="redIcon" />
  53. <span>{{ contentItem.name }}</span>
  54. </div>
  55. <div
  56. v-if="contentItem.isNeedStudyToday"
  57. class="contentItemstates"
  58. >
  59. 今日必学
  60. </div>
  61. </div>
  62. <div class="contentItem-video-img">
  63. <img
  64. class="img-bofang"
  65. :src="require('@/assets/image/learn/boFang.png')"
  66. />
  67. <img
  68. :src="getContentObj(contentItem.contents).faceUrl"
  69. fit="cover"
  70. />
  71. </div>
  72. </div>
  73. <div class="contentItemDescription">
  74. <div class="contentItemDescriptionTime">
  75. {{
  76. formateDatesFun(contentItem.createdTime) ||
  77. contentItem.createdTime
  78. }}
  79. </div>
  80. <div class="contentItemDescriptionStudyNeedTime">
  81. 所需学习时间:{{
  82. getTimeHoursMinuteSecondsFun(contentItem.readTimeInSec)
  83. }}
  84. </div>
  85. </div>
  86. </div>
  87. </van-cell>
  88. </van-list>
  89. </van-pull-refresh>
  90. </div>
  91. </template>
  92. <script>
  93. import { Toast } from "vant";
  94. import { mapState } from "vuex";
  95. import { getTodayStr } from "@/utils/date";
  96. export default {
  97. name: "page-learn-recommend",
  98. components: {},
  99. data() {
  100. return {
  101. contentList: [],
  102. loading: false,
  103. finished: false,
  104. isLoading: false,
  105. swiperList: [],
  106. arrowRightPng: require("@/assets/image/learn/arrowRight.png"),
  107. redIcon: require("@/assets/image/learn/redIcon.jpg")
  108. };
  109. },
  110. computed: {
  111. ...mapState({
  112. chooseEngneeringWork: state => state.user.chooseEngneeringWork
  113. })
  114. },
  115. watch: {
  116. // 监听:工种
  117. chooseEngneeringWork(value) {
  118. if (value.value) {
  119. this.getNewsfeed(); // 查询子目录
  120. }
  121. }
  122. },
  123. created() {
  124. if (this.chooseEngneeringWork) {
  125. this.getNewsfeed(); // 查询子目录
  126. }
  127. this.getCarousels();
  128. },
  129. mounted() {},
  130. methods: {
  131. // 查询轮播图
  132. getCarousels() {
  133. let params = { num: 4 };
  134. this.$_http
  135. .get(this.$_API.JTXT_GET_CAROUSELS, { params })
  136. .then(res => {
  137. // console.log("----res--" + JSON.stringify(res));
  138. this.swiperList = res.data;
  139. if (this.swiperList === null || this.swiperList.length === 0) {
  140. this.swiperList = [
  141. { imageUrl: require("@/assets/image/swipe/00.jpg") }
  142. ];
  143. }
  144. })
  145. .catch(() => {
  146. this.$store.commit("toggleLoading", false);
  147. });
  148. },
  149. clickCarousels(item) {
  150. if (!item.materialId) return;
  151. this.$router.push({
  152. name: "learn-content",
  153. params: { materialId: item.materialId }
  154. });
  155. },
  156. // 查询子目录
  157. getNewsfeed() {
  158. let engineertypeid = "";
  159. if (this.chooseEngneeringWork) {
  160. engineertypeid = this.chooseEngneeringWork.id;
  161. }
  162. let params = { engineertypeid: engineertypeid };
  163. this.$_http
  164. .get(this.$_API.JTXT_GET_NEWSFEED, { params })
  165. .then(res => {
  166. this.formatNeedStudyTodayFun(res.data);
  167. this.finished = true;
  168. })
  169. .catch(() => {
  170. this.$store.commit("toggleLoading", false);
  171. });
  172. },
  173. // 判断是否今日必学
  174. formatNeedStudyTodayFun(datas) {
  175. let todayStr = getTodayStr();
  176. datas.forEach(item => {
  177. item.tags.forEach(itemChild => {
  178. if (itemChild === todayStr) {
  179. item.isNeedStudyToday = true;
  180. }
  181. });
  182. });
  183. this.contentList = datas;
  184. },
  185. onLoad() {},
  186. chooseContent(index) {
  187. this.$router.push({
  188. name: "learn-content",
  189. params: { materialId: this.contentList[index].id }
  190. });
  191. },
  192. onRefresh() {
  193. this.getNewsfeed();
  194. this.getCarousels();
  195. setTimeout(() => {
  196. Toast("刷新成功");
  197. this.isLoading = false;
  198. }, 500);
  199. },
  200. getContentObj(content) {
  201. console.log("---" + content);
  202. return JSON.parse(content);
  203. }
  204. }
  205. };
  206. </script>
  207. <style lang="scss" scoped>
  208. @import "~@/styles/mixin";
  209. .contentBody {
  210. background-color: #fff;
  211. .contentItemDiv {
  212. width: 100%;
  213. .contentItemTitle {
  214. font-size: 0.65rem;
  215. }
  216. .contentItemTitleTitleRow {
  217. width: 100%;
  218. display: flex;
  219. justify-content: space-between;
  220. align-items: center;
  221. .contentItemTitle {
  222. text-align: left;
  223. font-size: 0.8rem;
  224. color: #000;
  225. display: -webkit-box;
  226. -webkit-box-orient: ho;
  227. -webkit-line-clamp: 10;
  228. // font-family: SimSun;
  229. font-family: FangSong;
  230. }
  231. .contentItemstates {
  232. font-size: 0.6rem;
  233. color: #f56c6c;
  234. border-radius: 0.2rem;
  235. margin-left: 0.5rem;
  236. flex-wrap: nowrap;
  237. white-space: nowrap;
  238. }
  239. }
  240. .contentItemTitleTitleRow-video {
  241. width: 100%;
  242. .contentVideoTitle {
  243. display: flex;
  244. justify-content: space-between;
  245. // align-items: center;
  246. .contentVideoTitleTxt {
  247. position: relative;
  248. display: flex;
  249. margin-bottom: 0.25rem;
  250. img {
  251. width: 0.1rem;
  252. height: 1rem;
  253. margin-right: 0.25rem;
  254. }
  255. span {
  256. font-size: 0.8rem;
  257. font-weight: bold;
  258. color: #000;
  259. white-space: nowrap;
  260. text-overflow: ellipsis;
  261. overflow: hidden;
  262. word-wrap: break-word;
  263. // white-space: pre-wrap;
  264. }
  265. }
  266. .contentVideoDK {
  267. flex-wrap: nowrap;
  268. white-space: nowrap;
  269. margin-left: 0.5rem;
  270. color: #999;
  271. display: flex;
  272. align-items: center;
  273. img {
  274. width: 0.75rem;
  275. height: 0.75rem;
  276. }
  277. }
  278. }
  279. .contentItemstates {
  280. font-size: 0.6rem;
  281. color: #f56c6c;
  282. border-radius: 0.2rem;
  283. margin-left: 0.5rem;
  284. flex-wrap: nowrap;
  285. white-space: nowrap;
  286. }
  287. .contentItem-video-img {
  288. width: 100%;
  289. height: 9rem;
  290. position: relative;
  291. img {
  292. width: 100%;
  293. height: 9rem;
  294. }
  295. .img-bofang {
  296. width: 2rem;
  297. height: 2rem;
  298. position: absolute;
  299. top: 0;
  300. left: 0;
  301. right: 0;
  302. bottom: 0;
  303. margin: auto;
  304. }
  305. }
  306. }
  307. .contentItemDescription {
  308. margin-top: 0.5rem;
  309. display: flex;
  310. justify-content: space-between;
  311. align-items: center;
  312. .contentItemDescriptionTime {
  313. color: #696969;
  314. font-size: 0.55rem;
  315. }
  316. .contentItemDescriptionStudyNeedTime {
  317. color: #0088e9;
  318. font-size: 0.55rem;
  319. }
  320. }
  321. }
  322. .my-swipe .van-swipe-item {
  323. background-color: #7cc8ff;
  324. height: 10rem;
  325. }
  326. }
  327. </style>