|
@@ -1,82 +1,72 @@
|
|
|
<template>
|
|
|
- <div class="scroll">
|
|
|
- <div>
|
|
|
- <van-tabs :active="active" @click="tabChange">
|
|
|
- <van-tab
|
|
|
- v-for="(item, index) in learnModuleList"
|
|
|
- :key="index"
|
|
|
- :title="item.title"
|
|
|
- >
|
|
|
- <van-list
|
|
|
- v-model="loading"
|
|
|
- :finished="finished"
|
|
|
- finished-text="没有更多了"
|
|
|
- @load="onLoad"
|
|
|
- >
|
|
|
- <van-cell v-for="item in item.content" :key="item" :title="item" />
|
|
|
- </van-list>
|
|
|
- </van-tab>
|
|
|
- </van-tabs>
|
|
|
- </div>
|
|
|
+ <div>
|
|
|
+ <van-tabs :active="active" @click="rootChange">
|
|
|
+ <!-- 根目录 -->
|
|
|
+ <van-tab
|
|
|
+ v-for="(item, index) in learnRootList"
|
|
|
+ :key="index"
|
|
|
+ :title="item.name"
|
|
|
+ >
|
|
|
+ <page-learn-child :learnChildList="learnChildList"> </page-learn-child>
|
|
|
+ </van-tab>
|
|
|
+ </van-tabs>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { pathParams } from "@/utils/tools";
|
|
|
+import PageLearnChild from "./page-learn-child";
|
|
|
export default {
|
|
|
name: "page-learn",
|
|
|
- components: {},
|
|
|
+ components: { PageLearnChild },
|
|
|
data() {
|
|
|
return {
|
|
|
active: 0,
|
|
|
- learnModuleList: [
|
|
|
- { title: "推荐", code: "recommend", content: [] },
|
|
|
- { title: "实践", code: "practice", content: [] },
|
|
|
- { title: "百科", code: "encyclopedia", content: [] },
|
|
|
- { title: "推荐", code: "recommend", content: [] },
|
|
|
- { title: "实践", code: "practice", content: [] },
|
|
|
- { title: "百科", code: "encyclopedia", content: [] },
|
|
|
- { title: "推荐", code: "recommend", content: [] },
|
|
|
- { title: "实践", code: "practice", content: [] },
|
|
|
- { title: "百科", code: "encyclopedia", content: [] }
|
|
|
- ],
|
|
|
- choosedTabIndex: 0,
|
|
|
- choosedTabTitle: "推荐",
|
|
|
- loading: true,
|
|
|
- finished: false
|
|
|
+ learnRootList: [],
|
|
|
+ choosedRootIndex: 0,
|
|
|
+ learnChildList: []
|
|
|
};
|
|
|
},
|
|
|
computed: {},
|
|
|
- created() {
|
|
|
- this.onLoad();
|
|
|
+ created() {},
|
|
|
+ mounted() {
|
|
|
+ this.getLearnRootList();
|
|
|
},
|
|
|
- mounted() {},
|
|
|
methods: {
|
|
|
- tabChange(index, title) {
|
|
|
- this.choosedTabIndex = index;
|
|
|
- this.choosedTabTitle = title;
|
|
|
- console.log("---index--" + index + "--title--" + title);
|
|
|
- this.initLoadStatus();
|
|
|
- this.onLoad();
|
|
|
+ // 查询学习根目录
|
|
|
+ getLearnRootList() {
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.JTXT_GET_CATEGORIES)
|
|
|
+ .then(res => {
|
|
|
+ this.learnRootList = res.data;
|
|
|
+ console.log("--root--" + JSON.stringify(this.learnRootList));
|
|
|
+ // 查询子目录
|
|
|
+ this.getChildList();
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.$store.commit("toggleLoading", false);
|
|
|
+ });
|
|
|
},
|
|
|
- initLoadStatus() {
|
|
|
- this.loading = true;
|
|
|
- this.finished = false;
|
|
|
+ // 查询子目录
|
|
|
+ getChildList() {
|
|
|
+ let path = {
|
|
|
+ categoryId: this.learnRootList[this.choosedRootIndex].id
|
|
|
+ };
|
|
|
+ this.$_http
|
|
|
+ .get(pathParams(this.$_API.JTXT_GET_CATEGORIES_CATEGROYID, path))
|
|
|
+ .then(res => {
|
|
|
+ this.learnChildList = res.data;
|
|
|
+ // 移除第一个根目录
|
|
|
+ this.learnChildList.shift();
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.$store.commit("toggleLoading", false);
|
|
|
+ });
|
|
|
},
|
|
|
- onLoad() {
|
|
|
- // 异步更新数据
|
|
|
- setTimeout(() => {
|
|
|
- for (let i = 0; i < 10; i++) {
|
|
|
- this.learnModuleList[this.choosedTabIndex].content.push(
|
|
|
- this.choosedTabTitle + i
|
|
|
- );
|
|
|
- }
|
|
|
- // 加载状态结束
|
|
|
- this.loading = false;
|
|
|
- // 数据全部加载完成
|
|
|
- if (this.learnModuleList[this.choosedTabIndex].content.length >= 40) {
|
|
|
- this.finished = true;
|
|
|
- }
|
|
|
- }, 1000);
|
|
|
+ // 切换根目录
|
|
|
+ rootChange(index, title) {
|
|
|
+ this.choosedRootIndex = index;
|
|
|
+ this.getChildList();
|
|
|
}
|
|
|
}
|
|
|
};
|