venueDetail.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="content">
  3. <u-image :src="venueInfo.url" mode="aspectFill" height="45vw" border-radius="10px" width="calc(100vw - 30px)" style="margin: 10px 15px;float: left;"></u-image>
  4. <u-section :title="venueInfo.name" :right="false" :show-line="false" font-size="32" class="title-box"></u-section>
  5. <view class="venue-text">
  6. <u-icon name="map" style="font-size: 14px;margin-right: 2px;"></u-icon>
  7. {{venueInfo.address}}
  8. </view>
  9. <u-section title="场馆简介" :right="false" :show-line="false" font-size="32" class="title-box"></u-section>
  10. <view class="venue-text">{{venueInfo.desc}}</view>
  11. <u-section title="班级信息" :right="false" :show-line="false" font-size="32" class="title-box"></u-section>
  12. <view class="class-box">
  13. <u-card :head-border-bottom="false" :foot-border-top="false" padding="0" margin="10px" v-for="(item, index) in venueInfo.classListResList"
  14. :key="index" class="class-card" @click="goToClassDetail(item)">
  15. <view class="class-content" slot="head" style="padding-top: 10px;">
  16. <text class="class-name">{{item.name}}</text>
  17. </view>
  18. <view class="class-content" slot="body" style="padding-bottom: 10px;">
  19. <view class="class-info">
  20. <view class="class-info-row">
  21. <u-icon name="clock"></u-icon>
  22. {{item.classStartDate}}&nbsp;&nbsp;{{item.classStartHours}}&nbsp;&nbsp;{{item.residue}}课时
  23. </view>
  24. <view class="class-info-row">
  25. <u-icon name="map"></u-icon>
  26. {{item.address}}
  27. </view>
  28. </view>
  29. </view>
  30. <view class="class-content" slot="foot" style="padding-bottom: 10px;text-align: right;">
  31. <u-button type="warning" shape="circle" :ripple="true" :custom-style="handleCustomStyle" size="mini">详情</u-button>
  32. </view>
  33. </u-card>
  34. </view>
  35. <u-top-tips ref="uTips"></u-top-tips>
  36. </view>
  37. </template>
  38. <script>
  39. import {
  40. mapGetters
  41. } from 'vuex'
  42. const NET = require('@/utils/request')
  43. const API = require('@/config/api')
  44. export default {
  45. computed: {
  46. ...mapGetters([
  47. 'customStyle',
  48. 'handleCustomStyle',
  49. ])
  50. },
  51. data() {
  52. return {
  53. venueId: '',
  54. venueInfo: {
  55. url: '',
  56. name: '',
  57. address: '',
  58. desc: '',
  59. classListResList: [],
  60. },
  61. }
  62. },
  63. onLoad(options) {
  64. this.venueId = options.id
  65. this.initialize()
  66. },
  67. onShow() {},
  68. onPullDownRefresh() {
  69. this.initialize()
  70. setTimeout(() => {
  71. uni.stopPullDownRefresh();
  72. }, 500)
  73. },
  74. methods: {
  75. // 获取初始化数据
  76. initialize() {
  77. NET.request(API.getVenueDetail, {
  78. id: this.venueId
  79. }, 'POST').then(res => {
  80. this.venueInfo = res.data
  81. }).catch(error => {
  82. this.$refs.uTips.show({
  83. title: error.message,
  84. type: 'warning',
  85. })
  86. })
  87. },
  88. // 跳转班级详情
  89. goToClassDetail(item) {
  90. uni.navigateTo({
  91. url: '/pagesEnroll/classDetail?id=' + item.id
  92. });
  93. },
  94. },
  95. }
  96. </script>
  97. <style lang="scss" scoped>
  98. @import "@/static/css/themes.scss";
  99. .content {
  100. width: 100%;
  101. float: left;
  102. .title-box {
  103. width: 100vw;
  104. padding: 10px 15px 5px 15px;
  105. float: left;
  106. box-sizing: border-box;
  107. }
  108. .venue-text {
  109. width: 100vw;
  110. padding: 5px 15px 15px 15px;
  111. float: left;
  112. box-sizing: border-box;
  113. color: #999999;
  114. font-size: 10px;
  115. line-height: 16px;
  116. }
  117. .class-box {
  118. width: 100vw;
  119. padding: 5px;
  120. float: left;
  121. box-sizing: border-box;
  122. .class-card {
  123. /deep/.u-border:after {
  124. border-radius: 20px !important;
  125. border-color: #999999;
  126. }
  127. .class-content {
  128. width: 100%;
  129. padding: 2px 15px;
  130. float: left;
  131. position: relative;
  132. }
  133. .class-name {
  134. height: 20px;
  135. font-weight: bold;
  136. font-size: 14px;
  137. line-height: 20px;
  138. }
  139. .class-info {
  140. .class-info-row {
  141. color: #999999;
  142. line-height: 18px;
  143. }
  144. }
  145. }
  146. }
  147. .student-box {
  148. max-height: 200px;
  149. padding: 0 15px;
  150. margin: 25px 0 0 0;
  151. box-sizing: border-box;
  152. overflow: auto;
  153. /deep/.u-card__head {
  154. padding-bottom: 0px !important;
  155. }
  156. }
  157. }
  158. </style>