|
@@ -4,7 +4,11 @@
|
|
|
<view slot="body">
|
|
|
<view class="class-info-text">
|
|
|
<u-icon name="clock"></u-icon>
|
|
|
- {{classInfo.classStartDate}} {{classInfo.classStartHours}} {{classInfo.residue}}课时
|
|
|
+ {{classInfo.classStartDate}} ~ {{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}} {{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>
|