123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <template>
- <view class="web_box">
- <!-- <u-navbar height="44" leftIcon="arrow-left" leftIconColor="#000" leftText="我的收藏" @leftClick="leftClick" :autoBack="true" bgColor="#fff">
- </u-navbar> -->
- <view class="list">
- <block v-for="(item,index) in collectList" :key="index">
- <view class="list_item hflex acenter" @click="toDetail(index)">
- <image :src="item.img" mode="widthFix" style="width: 322rpx;border-radius: 16rpx;"></image>
- <view class="img_right">
- <view class="title">{{item.name}}</view>
- <view class="text_style1">总学时:{{item.period}}学时</view>
- <view class="text_style1">讲师:{{item.lecturer}}</view>
- <view class="hflex acenter jbetween">
- <view class="order_price">¥{{item.price}}</view>
- <u-icon v-if="show" name="star-fill" color="#fa6400" size="22" @tap.stop="collect(index)"></u-icon>
- <u-icon v-else name="star" color="#fa6400" size="22" ></u-icon>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- export default {
- data() {
- return {
- collectList:[],
- page: 1,
- limit: 10,
- total: 0,
- show: true
- }
- },
- onLoad() {
- this.getList()
- },
- methods: {
- leftClick() {
-
- },
- // 获取我的收藏
- getList() {
- var that = this
- $api.req({
- url: '/api/User/myCourseList',
- data: {
- page: that.page,
- limit: that.limit,
- type: 3
- }
- }, function(res) {
- console.log("我的课程",res);
- if (res.code == 1) {
- that.collectList = res.data.list
- that.total = res.data.count
- }
- })
- },
- // 点击前往详情页
- toDetail(index) {
- let id = this.collectList[index].id
- $api.jump('/pages/index/course/detail?id=' + id)
- },
- // 取消收藏
- collect(index) {
- var that = this
- let id = that.collectList[index].id
- $api.req({
- url: '/api/Index/collectionCancelCourse',
- data: {
- id: id,
- type: 0
- }
- }, function(res) {
- if (res.code == 1) {
- $api.info(res.msg)
- that.show = false
- }
- })
- },
- // 触底事件
- onReachBottom() {
- console.log("到底了");
- console.log(this.page );
- console.log(this.limit);
- console.log(Number(this.total));
- if (Number(this.page) * Number(this.limit) >= Number(this.total)) {
- $api.info("没有更多了")
- } else {
- this.page++
- this.getList()
- }
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .web_box::v-deep {
- padding: 0 30rpx;
-
- .u-navbar {
- width: 100%;
- box-sizing: border-box;
- padding: 36px 16px 58rpx 0;
- }
- .list {
- width: 100%;
- }
- .list_item {
- width: 100%;
- box-sizing: border-box;
- padding: 6rpx;
- background: #FFFFFF;
- box-shadow: 0px 2px 6px 0px rgba(213,213,213,0.5);
- border-radius: 24rpx;
- margin-top: 20rpx;
- }
- .img_right {
- width: calc(100% - 322rpx);
- padding-left: 12rpx;
- }
- .title {
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- padding-bottom: 14rpx;
- }
- .text_style1 {
- font-size: 20rpx;
- font-weight: 400;
- color: #999999;
- padding-bottom: 12rpx;
- }
- .order_price {
- font-size: 32rpx;
- font-weight: 600;
- color: #FA6400;
- }
- }
- </style>
|