Просмотр исходного кода

Signed-off-by: liuboyan <632697560@qq.com>
bug

liuboyan 4 лет назад
Родитель
Сommit
65a04da25a
3 измененных файлов с 154 добавлено и 139 удалено
  1. 144 137
      pagesEnroll/classDetail.vue
  2. 5 1
      pagesEnroll/classList.vue
  3. 5 1
      pagesEnroll/venueDetail.vue

+ 144 - 137
pagesEnroll/classDetail.vue

@@ -4,7 +4,11 @@
 			<view slot="body">
 				<view class="class-info-text">
 					<u-icon name="clock"></u-icon>
-					{{classInfo.classStartDate}}&nbsp;&nbsp;{{classInfo.classStartHours}}&nbsp;&nbsp;{{classInfo.residue}}课时
+					{{classInfo.classStartDate}}&nbsp;~&nbsp;{{classInfo.classEndDate}}
+				</view>
+				<view class="class-info-text" v-for="(item, index) in classInfo.classExtrasList" :key="index">
+					<u-icon name="calendar" style="visibility: hidden;"></u-icon>
+					<text>{{item.week}}&nbsp;{{item.startTime}}-{{item.endTime}}</text>
 				</view>
 				<view class="class-info-text">
 					<u-icon name="map"></u-icon>
@@ -39,166 +43,169 @@
 				</view>
 			</view>
 		</u-card>
-		<u-top-tips ref="uTips" </u-top-tips> </view> </template> <script>
-			import {
-			mapGetters
-			} from 'vuex'
-			const NET = require('@/utils/request')
-			const API = require('@/config/api')
-			export default {
-			computed: {
+		<u-top-tips ref="uTips"></u-top-tips>
+	</view>
+</template>
+<script>
+	import {
+		mapGetters
+	} from 'vuex'
+	const NET = require('@/utils/request')
+	const API = require('@/config/api')
+	export default {
+		computed: {
 			...mapGetters([
-			'customStyle',
+				'customStyle',
 			])
-			},
-			data() {
+		},
+		data() {
 			return {
-			classId: '',
-			classInfo: {
-			name: '',
-			classStartDate: '',
-			classStartHours: '',
-			residue: '',
-			address: '',
-			coachName: '',
-			coachDesc: '',
-			coachUrl: '',
-			desc: '',
-			showList: [],
-			},
-			handleStyleLeft: {
-			borderRadius: '40px 0 0 40px',
-			borderRight: '1px solid #ffffff'
-			},
-			handleStyleRight: {
-			borderRadius: '0 40px 40px 0',
-			borderLeft: '1px solid #ffffff'
-			},
-			cardStyle: {
-			fontWeight: 'bold'
-			},
-			shadowStyle: {
-			backgroundImage: 'linear-gradient(to bottom, transparent 80rpx, #ffffff 80rpx, #ffffff 100rpx)',
-			paddingTop: "100rpx",
-			marginTop: "-100rpx"
-			},
+				classId: '',
+				classInfo: {
+					name: '',
+					classStartDate: '',
+					classStartHours: '',
+					residue: '',
+					address: '',
+					coachName: '',
+					coachDesc: '',
+					coachUrl: '',
+					desc: '',
+					showList: [],
+				},
+				handleStyleLeft: {
+					borderRadius: '40px 0 0 40px',
+					borderRight: '1px solid #ffffff'
+				},
+				handleStyleRight: {
+					borderRadius: '0 40px 40px 0',
+					borderLeft: '1px solid #ffffff'
+				},
+				cardStyle: {
+					fontWeight: 'bold'
+				},
+				shadowStyle: {
+					backgroundImage: 'linear-gradient(to bottom, transparent 80rpx, #ffffff 80rpx, #ffffff 100rpx)',
+					paddingTop: "100rpx",
+					marginTop: "-100rpx"
+				},
 			}
-			},
-			onLoad(options) {
+		},
+		onLoad(options) {
 			this.classId = options.id
 			this.initialize()
-			},
-			onShow() {},
-			onPullDownRefresh() {
+		},
+		onShow() {},
+		onPullDownRefresh() {
 			this.initialize()
 			setTimeout(() => {
-			uni.stopPullDownRefresh();
+				uni.stopPullDownRefresh();
 			}, 500)
-			},
-			methods: {
+		},
+		methods: {
 			// 获取初始化数据
 			initialize() {
-			NET.request(API.getClassDetail, {
-			id: this.classId
-			}, 'POST').then(res => {
-			this.classInfo = res.data
-			}).catch(error => {
-			this.$refs.uTips.show({
-			title: error.message,
-			type: 'warning',
-			})
-			})
-			},
+				NET.request(API.getClassDetail, {
+					id: this.classId
+				}, 'POST').then(res => {
+					this.classInfo = res.data
+				}).catch(error => {
+					this.$refs.uTips.show({
+						title: error.message,
+						type: 'warning',
+					})
+				})
 			},
-			}
-			</script>
+		},
+	}
+</script>
 
-			<style>
-				page {
-					width: 100%;
-					height: 100%;
-					background-color: #f7f7f7;
-					position: relative;
-				}
-			</style>
-			<style lang="scss" scoped>
-				@import "@/static/css/themes.scss";
+<style>
+	page {
+		width: 100%;
+		height: 100%;
+		background-color: #f7f7f7;
+		position: relative;
+	}
+</style>
+<style lang="scss" scoped>
+	@import "@/static/css/themes.scss";
 
-				.content {
-					width: 100%;
-					float: left;
-
-					.class-info-text {
-						color: #999999;
-						line-height: 18px;
+	.content {
+		width: 100%;
+		float: left;
 
-						u-icon {
-							margin-right: 2px;
-						}
-					}
+		.class-info-text {
+			color: #999999;
+			line-height: 18px;
 
-					.student-box {
-						max-height: 200px;
-						padding: 0 15px;
-						margin: 25px 0 0 0;
-						box-sizing: border-box;
-						overflow: auto;
+			u-icon {
+				margin-right: 2px;
+			}
+		}
 
-						/deep/.u-card__head {
-							padding-bottom: 0px !important;
-						}
-					}
+		.student-box {
+			max-height: 200px;
+			padding: 0 15px;
+			margin: 25px 0 0 0;
+			box-sizing: border-box;
+			overflow: auto;
 
-					.techaer-info-box {
-						display: flex;
+			/deep/.u-card__head {
+				padding-bottom: 0px !important;
+			}
+		}
 
-						.techaer-info {
-							flex: 1;
-							margin-left: 10px;
+		.techaer-info-box {
+			display: flex;
 
-							.class-info-title {
-								font-size: 14px;
-								font-weight: bold;
-								margin-bottom: 5px;
-							}
-						}
-					}
+			.techaer-info {
+				flex: 1;
+				margin-left: 10px;
 
-					.class-show-box {
-						width: 100%;
-						float: left;
+				.class-info-title {
+					font-size: 14px;
+					font-weight: bold;
+					margin-bottom: 5px;
+				}
+			}
+		}
 
-						.class-show-card {
-							width: calc(50% - 16px);
-							margin: 0 8px 16px 8px;
-							float: left;
+		.class-show-box {
+			width: 100%;
+			float: left;
 
-							.class-show-name {
-								width: 100%;
-								text-align: center;
-								line-height: 20px;
-								font-size: 14px;
-								margin-top: 5px;
-							}
-						}
+			.class-show-card {
+				width: calc(50% - 16px);
+				margin: 0 8px 16px 8px;
+				float: left;
 
-						.video-col {
-							width: 100%;
-							height: 30vw;
-							border-radius: 10px;
+				.class-show-name {
+					width: 100%;
+					text-align: center;
+					line-height: 20px;
+					font-size: 14px;
+					margin-top: 5px;
+				}
+			}
 
-							video {
-								width: 100%;
-								height: 30vw;
-							}
-						}
-					}
+			.video-col {
+				width: 100%;
+				height: 30vw;
+				border-radius: 10px;
 
-					.handle-fix-box {
-						u-button {
-							width: 50%;
-							display: inline-block;
-						}
-					}
+				video {
+					width: 100%;
+					height: 30vw;
 				}
-			</style>
+			}
+		}
+
+		.handle-fix-box {
+			u-button {
+				width: 50%;
+				display: inline-block;
+			}
+		}
+	}
+</style>

+ 5 - 1
pagesEnroll/classList.vue

@@ -14,7 +14,11 @@
 				<view class="card-content" slot="body">
 					<view class="card-info-text">
 						<u-icon name="clock"></u-icon>
-						{{item.classStartDate}}&nbsp;&nbsp;{{item.classStartHours}}
+						{{item.classStartDate}}&nbsp;~&nbsp;{{item.classEndDate}}
+					</view>
+					<view class="card-info-text" v-for="(site, index2) in item.classExtrasList" :key="index2">
+						<u-icon name="calendar" style="visibility: hidden;"></u-icon>
+						<text>{{site.week}}&nbsp;{{site.startTime}}-{{site.endTime}}</text>
 					</view>
 					<view class="card-info-text">
 						<u-icon name="map"></u-icon>

+ 5 - 1
pagesEnroll/venueDetail.vue

@@ -19,7 +19,11 @@
 					<view class="class-info">
 						<view class="class-info-row">
 							<u-icon name="clock"></u-icon>
-							{{item.classStartDate}}&nbsp;&nbsp;{{item.classStartHours}}&nbsp;&nbsp;{{item.residue}}课时
+							{{item.classStartDate}}&nbsp;~&nbsp;{{item.classEndDate}}
+						</view>
+						<view class="class-info-row" v-for="(site, index2) in item.classExtrasList" :key="index2">
+							<u-icon name="calendar" style="visibility: hidden;"></u-icon>
+							<text>{{site.week}}&nbsp;{{site.startTime}}-{{site.endTime}}</text>
 						</view>
 						<view class="class-info-row">
 							<u-icon name="map"></u-icon>