page-learn-child.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <template>
  2. <div class="contentBody" v-if="learnChildList.length > 0">
  3. <van-tabs
  4. :active="active"
  5. type="line"
  6. line-height="0px"
  7. @click="childChange"
  8. >
  9. <!-- 子目录 -->
  10. <van-tab
  11. v-for="(tabItem, tabIndex) in learnChildList"
  12. :key="tabIndex"
  13. :title="tabItem.name"
  14. :title-style="titleStyle"
  15. >
  16. <van-list
  17. v-model="loading"
  18. :finished="finished"
  19. finished-text="没有更多了"
  20. @load="onLoad"
  21. >
  22. <van-cell
  23. v-for="(contentItem, contentIndex) in contentList"
  24. :key="contentIndex"
  25. @click="chooseContent(contentIndex)"
  26. >
  27. <div slot="default" class="contentItemDiv">
  28. <div class="contentItemTitleTitleRow">
  29. <div class="contentItemTitle">{{ contentItem.name }}</div>
  30. <div
  31. v-if="contentItem.isNeedStudyToday"
  32. class="contentItemstates"
  33. >
  34. 今日必学
  35. </div>
  36. </div>
  37. <div class="contentItemDescription">
  38. <div class="contentItemDescriptionTime">
  39. {{
  40. formateDatesFun(contentItem.createdTime) ||
  41. contentItem.createdTime
  42. }}
  43. </div>
  44. <div class="contentItemDescriptionStudyNeedTime">
  45. 所需学习时间:{{
  46. getTimeHoursMinuteSecondsFun(contentItem.readTimeInSec)
  47. }}
  48. </div>
  49. </div>
  50. </div>
  51. </van-cell>
  52. </van-list>
  53. </van-tab>
  54. </van-tabs>
  55. </div>
  56. </template>
  57. <script>
  58. import { Toast } from "vant";
  59. import { getTodayStr } from "@/utils/date";
  60. import { mapState } from "vuex";
  61. export default {
  62. name: "page-learn-child",
  63. components: {},
  64. props: {
  65. // 分组的数据列表
  66. parentId: {
  67. type: String,
  68. default: ""
  69. }
  70. },
  71. data() {
  72. return {
  73. active: 0,
  74. titleStyle: {
  75. fontSize: "10px"
  76. },
  77. choosedChildIndex: 0,
  78. contentList: [],
  79. loading: false,
  80. finished: false,
  81. learnChildList: [],
  82. learnPage: 0,
  83. learnSize: 10
  84. };
  85. },
  86. computed: {
  87. ...mapState({
  88. chooseEngneeringWork: state => state.user.chooseEngneeringWork
  89. })
  90. },
  91. created() {},
  92. mounted() {
  93. this.getChildList();
  94. },
  95. destroyed() {},
  96. watch: {
  97. // 监听:工种
  98. chooseEngneeringWork(value) {
  99. if (value.value) {
  100. this.getContentList(); // 查询:考试的场次列表信息
  101. }
  102. }
  103. },
  104. methods: {
  105. // 查询子目录
  106. getChildList() {
  107. this.$store.commit("toggleLoading", true);
  108. let path = {
  109. categoryId: this.parentId
  110. };
  111. this.$_http
  112. .get(this.$pathParams(this.$_API.JTXT_GET_CATEGORIES_CATEGROYID, path))
  113. .then(res => {
  114. this.learnChildList = res.data;
  115. this.$store.commit("toggleLoading", false);
  116. this.learnPage = 0;
  117. })
  118. .catch(() => {
  119. this.$store.commit("toggleLoading", false);
  120. });
  121. },
  122. childChange(index) {
  123. this.choosedChildIndex = index;
  124. this.learnPage = 0;
  125. this.getContentList();
  126. },
  127. // 查询子目录
  128. getContentList() {
  129. this.$store.commit("toggleLoading", true);
  130. let path = {
  131. categoryId: this.learnChildList[this.choosedChildIndex].id
  132. };
  133. let params = {
  134. engineertypeid: this.chooseEngneeringWork.id,
  135. page: this.learnPage,
  136. size: this.learnSize
  137. };
  138. this.$_http
  139. .get(
  140. this.$pathParams(
  141. this.$_API.JTXT_GET_CATEGORIES_CATEGROYID_MATERIALS,
  142. path
  143. ),
  144. { params }
  145. )
  146. .then(res => {
  147. this.formatNeedStudyTodayFun(res.data.content);
  148. // 分页到底了
  149. this.finished = res.data.last;
  150. this.learnPage++;
  151. this.$store.commit("toggleLoading", false);
  152. })
  153. .catch(() => {
  154. Toast("系统异常");
  155. this.$store.commit("toggleLoading", false);
  156. });
  157. },
  158. // 判断是否今日必学
  159. formatNeedStudyTodayFun(datas) {
  160. let todayStr = getTodayStr();
  161. datas.forEach(item => {
  162. item.tags.forEach(itemChild => {
  163. if (itemChild === todayStr) {
  164. item.isNeedStudyToday = true;
  165. }
  166. });
  167. });
  168. this.contentList = datas;
  169. },
  170. onLoad() {
  171. this.getContentList();
  172. },
  173. chooseContent(index) {
  174. this.$router.push({
  175. name: "learn-content",
  176. params: { materialId: this.contentList[index].id }
  177. });
  178. }
  179. }
  180. };
  181. </script>
  182. <style lang="scss" scoped>
  183. @import "~@/styles/mixin";
  184. .contentBody {
  185. background-color: #fff;
  186. .contentItemDiv {
  187. width: 100%;
  188. .contentItemTitle {
  189. font-size: 0.65rem;
  190. }
  191. .contentItemTitleTitleRow {
  192. width: 100%;
  193. display: flex;
  194. justify-content: space-between;
  195. align-items: center;
  196. .contentItemTitle {
  197. text-align: center;
  198. font-size: 0.65rem;
  199. color: #000;
  200. white-space: nowrap;
  201. text-overflow: ellipsis;
  202. overflow: hidden;
  203. }
  204. .contentItemstates {
  205. font-size: 0.6rem;
  206. color: #f56c6c;
  207. border-radius: 0.2rem;
  208. margin-left: 0.5rem;
  209. flex-wrap: nowrap;
  210. white-space: nowrap;
  211. }
  212. }
  213. .contentItemDescription {
  214. margin-top: 0.5rem;
  215. display: flex;
  216. justify-content: space-between;
  217. align-items: center;
  218. .contentItemDescriptionTime {
  219. color: #696969;
  220. font-size: 0.55rem;
  221. }
  222. .contentItemDescriptionStudyNeedTime {
  223. color: #0088e9;
  224. font-size: 0.55rem;
  225. }
  226. }
  227. }
  228. .my-swipe .van-swipe-item {
  229. background-color: #7cc8ff;
  230. height: 10rem;
  231. }
  232. }
  233. </style>