index.vue 12.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
<template>
  <div class="container">
    <!-- 顶部搜素 -->
    <div class="searchhead">
      <div class="searchbox flexone">
        <div class="searchimg">
          <img src="../../../assets/search.png" alt />
        </div>

        <input
          type="text"
          placeholder="搜索你感兴趣的课程文章"
          class="searchtext"
          @click="entersearch"
        />
      </div>
    </div>
    <!-- 课程列表 -->
    <div class="courseitemk">
      <div class="courseitem flex" v-if="now != null" @click="zhibodetail(now)">
        <div class="courseimg">
          <img :src="now.image" alt />
        </div>
        <div class="courseright">
          <div class="coursetitlek">{{ now.title }}</div>
          <div class="zhibok flexone">
            <img src="../../../assets/zhibo.png" alt class="zhiimg" />
            <div class="zhiname">正在直播</div>
          </div>
          <div class="know flexone">
            <span class="morepeople">{{ now.description }}</span>
            <div class="knowmore">
              了解详情
              <img src="../../../assets/yourow.png" alt class="yourow" />
            </div>
          </div>
        </div>
      </div>
      <div
        class="courseitem flex"
        v-if="next != null"
        @click="zhibodetail(next)"
      >
        <div class="courseimg">
          <img :src="next.image" alt />
        </div>
        <div class="courseright">
          <div class="coursetitlek">{{ next.title }}</div>
          <div class="zhibok flexone">
            <img src="../../../assets/ready.png" alt class="zhiimg" />
            <div class="zhiname">{{ next.start_time }}准时开课</div>
          </div>
          <div class="know flexone">
            <span class="morepeople">{{ next.description }}</span>
            <div class="knowmore">
              了解详情
              <img src="../../../assets/yourow.png" alt class="yourow" />
            </div>
          </div>
        </div>
      </div>
    </div>

    <!-- 课程头部 -->
    <div class="coursenavkkk flexone">
      <div
        class="coursenavleft"
        :class="selnav == 0 ? 'selactive' : ''"
        :data-id="0"
        @click="selectnav"
      >
        唐元集课程
      </div>
      <div
        class="coursenavleft"
        :class="selnav == 1 ? 'selactive' : ''"
        :data-id="1"
        @click="selectnav"
      >
        营养小知识
      </div>
    </div>
    <div class="coursetop" v-if="selnav == 0">
      <div class="coursenavleftkk flexone">
        <div
          class="coursenavleftk"
          :class="navindex == index ? 'selactive' : ''"
          @click="selectnavsec(item.id, index)"
          v-for="(item, index) in cursekindlist"
          :key="index"
        >
          {{ item.name }}
        </div>
      </div>
    </div>
    <!-- <img src="../../../assets/youhua.png" class="youhua" alt /> -->

    <!-- 课程 -->
    <div v-if="selnav == 0">
      <div class="nodata" v-if="videolist.length == 0">暂无数据</div>
      <van-list
        class="courseboxkkk"
        v-model="loading"
        :finished="finished"
        finished-text="没有更多了"
        @load="onLoad"
        v-else
      >
        <div
          class="courseboxitem"
          v-for="(item, index) in videolist"
          :key="index"
          @click="coursedetail(item)"
        >
          <div class="coursenameimg">
            <img :src="item.image" alt />
          </div>
          <div class="coursetext">
            <div class="coursetitlek">{{ item.title }}</div>
            <div class="coursename">{{ item.description }}</div>
            <div class="courseteacher">讲师:{{ item.user.nickname }}</div>
          </div>
        </div>
      </van-list>
    </div>

    <!-- 营养小知识 -->
    <div v-if="selnav == 1">
      <div class="nodata" v-if="yinglist.length == 0">暂无数据</div>
      <van-list
        class="courseboxk"
        v-model="loadingying"
        :finished="finishedying"
        finished-text="没有更多了"
        @load="onLoadyinyang"
        v-else
      >
        <div
          class="courseboxitem"
          v-for="item in yinglist"
          :key="item.id"
          @click="yingyangdetail(item.id)"
        >
          <div class="coursenameimg">
            <img :src="item.image" alt />
          </div>
          <div class="coursetext">
            <div class="coursename knowlagename">{{ item.title }}</div>
          </div>
        </div>
      </van-list>
    </div>
    <!-- 底部导航 -->
    <tabBar v-bind:active="0" />
  </div>
</template>

<script>
import Vue from "vue";
import tabBar from "@/components/views/tabBar.vue";
import { List, Toast } from "vant";
Vue.use(List);

export default {
  components: {
    tabBar
  },
  data() {
    return {
      selnav: 0,
      loading: false,
      finished: false,
      videolist: [],
      // 营养知识
      loadingying: false,
      finishedying: false,
      yinglist: [],
      videopage: 1,
      this_page: "",
      total_page: "",
      now: "",
      next: "",
      cursekindlist: [],
      navindex: 0,
      sort_id: ''
    };
  },
  created() {
    let that = this;
    document.title = "唐元集课堂";
    let selnav = localStorage.getItem("selnav");
    console.log(selnav)
    if (selnav) {
      this.selnav = selnav;
      if (this.selnav == 0) {
        that.total_page = "";
        that.this_page = "";
        that.videopage = 1;
        that.videolist = [];
        this.getvideolist();
        localStorage.setItem("selnav", "")
      } else if (this.selnav == 1) {
          that.total_page = "";
          that.this_page = "";
          this.yinglist = [];
          that.videopage = 1;
          this.getyingyang();
      }
    } else {
      this.getcourselist()
    }

    this.getindex();
    this.getintence();

  },
  methods: {
    // 进入搜索页
    entersearch() {
      this.$router.push({
        path: "/searchcourse",
        query: {
          selnav: this.selnav
        }
      });
    },
    selectnavsec(id, index) {
      let that = this;

      this.navindex = index;
      this.sort_id = id;
      that.videopage = 1;
      that.videolist = [];
      that.getvideolist();
    },
    // 获取课程分类
    getcourselist() {
      let that = this;
      let url = '/api/index/sort'
      let param = {

      };

      that.$axios
        .post(url, param)
        .then(function (res) {
          console.log(res);
          that.cursekindlist = res.data;
          that.sort_id = res.data[0].id
          that.getvideolist();
        })
        .catch(function (err) {
          console.log(err);

        });
    },

    getintence() {
      let that = this
      console.log(99999)
      var result = ""

      var url = "/api/user/intended";
      let param = {};
      that.$axios
        .post(url, param)
        .then(function (res) {
          console.log(res);
          result = res.data
          localStorage.setItem("intended", JSON.stringify(res.data.intended))
        })
        .catch(function (err) {
          console.log(err);
        });

    },
    // 获取首页接口
    getindex() {
      let that = this;
      var url = "/api/index/index";
      let param = {};

      that.$axios
        .get(url, param)
        .then(function (res) {
          console.log(res);
          that.now = res.data.now;
          that.next = res.data.next;
        })
        .catch(function (err) {
          console.log(err);
        });
    },
    // 进入直播详情
    zhibodetail(item) {
      
      // this.$router.push({
      //   path: '/userzhibo',
      //   query: {
      //     id: item.id
      //   }
      // })
      localStorage.setItem("coursename",item.title)
      if (item.allow_join != undefined) {
        if (item.allow_join == 1) {
          this.$router.push({
            path: '/userzhibo',
            query: {
              id: item.id
            }
          })
        } else {
          Toast("还没开课,请耐心等待")
        }

      } else {
        this.$router.push({
          path: '/userzhibo',
          query: {
            id: item.id
          }
        })
      }

    },
    // 视频上拉加载
    onLoad() {
      let that = this;
      // 异步更新数据
      // setTimeout 仅做示例,真实场景中一般为 ajax 请求
      setTimeout(() => {
        console.log(3434,'分页加载');
        let newvideopage = that.videopage;
        newvideopage++;
        that.videopage = newvideopage;
        console.log(that.videopage);
        that.getvideolist();

        // 加载状态结束
        this.loading = false;
        // 数据全部加载完成
      
        if (that.this_page == that.total_page) {
          this.finished = true;
        }
      }, 1000);
    },

    // 营养知识上拉加载
    onLoadyinyang() {
      let that = this;
      // 异步更新数据
      // setTimeout 仅做示例,真实场景中一般为 ajax 请求
      setTimeout(() => {
        console.log(3434);

        let newvideopage = that.videopage;
        newvideopage++;
        that.videopage = newvideopage;
        console.log(that.videopage);
        that.getyingyang();

        // 加载状态结束
        this.loadingying = false;
        // 数据全部加载完成
        if (that.this_page == that.total_page) {
          this.finishedying = true;
        }
      }, 1000);
    },

    // 获取视频
    getvideolist() {
      let that = this;
      var url = "/api/index/lesson_list";
      let param = {
        sort_id: that.sort_id,
        page: that.videopage
      };

      that.$axios
        .post(url, param, Headers)
        .then(res => {
          console.log(res, "列表");
          that.videolist = that.videolist.concat(res.data.lesson);
          that.total_page = res.data.total_page;
          that.this_page = res.data.this_page;
        })
        .catch(err => {
          console.log(err);

          // setTimeout(function () {
          //   that.$router.go(-1)
          // })
        });
    },
    // 获取营养知识
    getyingyang() {
      console.log(9999);
      let that = this;
      var url = "/api/index/knowledge_list";
      let param = {
        page: that.videopage
      };
      that.$axios
        .post(url, param)
        .then(res => {
          console.log(res, "列表");
          that.yinglist = that.yinglist.concat(res.data.knowledge);
          that.total_page = res.data.total_page;
          that.this_page = res.data.this_page;
        })
        .catch(err => {
          console.log(err);

          // setTimeout(function () {
          //   that.$router.go(-1)
          // })
        });
    },
    // 进入营养详情页面
    yingyangdetail(id) {
      this.$router.push({
        path: "/yingyangdetail",
        query: { id: id }
      });
    },
    // 录播详情
    coursedetail(item) {
      this.$router.push({
        path: "/lubodetail",
        query: {
          id: item.id,
         
        }
      });
    },

    selectnav(e) {
      let that = this;
      this.selnav = e.currentTarget.dataset.id;
      localStorage.setItem("selnav", this.selnav)
      console.log(this.selnav);
      if (this.selnav == 0) {
        that.total_page = "";
        that.this_page = "";
        that.videopage = 1;
        that.videolist = [];

        this.getcourselist()
      } else if (this.selnav == 1) {
        that.total_page = "";
        that.this_page = "";
        this.yinglist = [];
        that.videopage = 1;
        this.getyingyang();
      }
    }
  }
};
</script>

<style scoped>
@import "../../../style/course.css";
.coursetop {
  width: 100%;
  background: #fff;
}
.coursetitlek {
  color: #02170b;
  font-size: 0.32rem;
  margin-bottom: 0.12rem;
}
.coursenavleftk {
  color: #b5bfba;
  font-size: 0.28rem;
  text-align: center;
  flex: 0 0 auto;
  margin-right: 0.52rem;
}
.coursenavleftkk {
  width: 6.86rem;
  padding: 0.24rem 0;
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: scroll;
}
.selactive {
  position: relative;
  color: #599158;
}

.selactive::after {
  display: block;
  content: "";
  width: 0.4rem;
  height: 0.02rem;
  background: #599158;
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
}
</style>