123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <view style="padding: 30rpx;">
- <navigator :url="'/pages2/wd/course?id=' + item.goodsId" v-for="(item, index) in goodsList" :key="index" style="margin-bottom: 30rpx;">
- <view class="class_item">
- <image :src="$method.splitImgHost(item.coverUrl, true)" style="height: 316rpx;width: 100%;border-radius: 24rpx;"></image>
- <view style="color: #333333;font-weight: bold;font-size: 32rpx;">{{ item.goodsName }}</view>
- <view class=".content_box">
- <image src="/static/icon/wk_icon1.png" class="wk_icon"></image>
- 共
- <text class="content">{{item.courseNum}}</text>
- 科
- <text class="content">{{ item.secAllNum }}</text>
- 节
- <text class="content">{{ item.classHours }}</text>
- 学时
- </view>
- <view class=".content_box">
- <image src="/static/icon/wk_icon2.png" class="wk_icon"></image>
- 学习有效期:
- <text class="content">{{ $method.timestampToTime(item.validityStartTime) }} - {{ $method.timestampToTime(item.validityEndTime) }}</text>
- </view>
- </view>
- <view class="bottomBox">
- <view class=".content_box">
- <image src="/static/icon/wk_icon3.png" class="wk_icon"></image>
- 学习进度:{{ item.stuAllNum }}/{{ item.secAllNum }}
- </view>
- <view class="box_progress">
- <view style="width: 60%;"><u-line-progress :showText="false" active-color="#ff9900" :percent="(item.stuAllNum / item.secAllNum) * 100"></u-line-progress></view>
- <view><u-button type="warning" size="mini" @click.stop="studyIn">进入学习</u-button></view>
- </view>
- <view class="box_progress" v-if="item.applyStatus === 1">
- <view style="width: 60%;">
- <text style="color: #333333;white-space: nowrap;text-overflow: ellipsis;">{{ item.applyName }}</text>
- </view>
- <view><u-button :plain="true" type="primary" size="mini" @click.stop="appointment(item)">预约考试</u-button></view>
- </view>
- <view class="box_progress" v-if="item.beforeStatus === 1">
- <view style="width: 60%;">
- <text style="color: #2979ff;white-space: nowrap;text-overflow: ellipsis;">{{ item.beforeName }}</text>
- </view>
- <view><u-button type="primary" size="mini">进入刷题</u-button></view>
- </view>
- </view>
- </navigator>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [1, 2, 3],
- goodsList: []
- };
- },
- onLoad(option) {
- this.courseGoodsList();
- },
- onShow() {},
- methods: {
- courseGoodsList() {
- let self = this;
- this.$api.courseGoodsList().then(res => {
- if (res.data.code == 200) {
- self.goodsList = res.data.rows;
- }
- });
- },
- studyIn() {
- this.$navTo.togo('/pages2/verify/input');
- },
- appointment(item) {
- var data = {
- goodsId: item.goodsId,
- gradeId: item.gradeId
- };
- this.$api.getApplysubscribe(data).then(res => {
- if (res.data.code === 500) {
- uni.showModal({
- showCancel: false,
- content: res.data.msg
- });
- }
- if (res.data.code === 200) {
- this.$navTo.togo('/pages2/appointment/index', {
- goodsId: item.goodsId,
- gradeId: item.gradeId
- });
- }
- });
- }
- }
- };
- </script>
- <style>
- page {
- background: #eaeef1;
- }
- </style>
- <style scope>
- .box_progress {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 20rpx;
- }
- .bottomBox {
- background: #ffffff;
- width: 94%;
- border-bottom-left-radius: 24rpx;
- border-bottom-right-radius: 24rpx;
- margin: 0 auto;
- padding: 20rpx;
- }
- .content_box {
- display: flex;
- align-items: center;
- color: #999999;
- margin-top: 8rpx;
- }
- .content {
- color: #000000;
- margin: 0 8rpx;
- }
- .wk_icon {
- width: 24rpx;
- height: 24rpx;
- margin-right: 8rpx;
- }
- .class_item {
- width: 100%;
- background: #ffffff;
- box-shadow: 0rpx 10rpx 9rpx 1rpx rgba(165, 196, 239, 0.1);
- border-radius: 24rpx;
- padding: 20rpx;
- z-index: 999;
- position: relative;
- }
- </style>
|