mineActive.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="activeBox" v-for="(item,index) in activeList" :key="index">
  5. <view class="teaching_case">
  6. <view class="img">
  7. <!-- <image src="http://43.139.158.220:5007/img/static/activity/bg2.png" mode="aspectFill"></image> -->
  8. <image :src="activeList[index].pic" mode="aspectFill"></image>
  9. </view>
  10. <view class="right">
  11. <view class="title">
  12. <view class="tag bqZ-font">类型</view>
  13. <text class="three-font" style="font-weight: 600;">{{ item.acName }}</text>
  14. </view>
  15. <view class="introduce">
  16. {{ item.brief }}
  17. </view>
  18. <view class="operate">
  19. <view class="left">
  20. <view class="money fNum-font"><text class="three-font">¥</text> {{ item.cost }}</view>
  21. <!-- <view class="person">已报名{{ item.pers }}人</view> -->
  22. </view>
  23. <view class="Oright" @click="gotoDetail" :data-all="item">
  24. <view class="text">查看详情</view>
  25. <view class="arrow">
  26. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/mine/arrow-right-blue.png"
  27. mode="aspectFill"></image>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="" style="width: 100%;height: 50rpx;">
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. navBarData: {
  43. title: '我的活动',
  44. btn: 1
  45. },
  46. activeList: [],
  47. };
  48. },
  49. methods: {
  50. gotoDetail(e) {
  51. let data=e.currentTarget.dataset.all
  52. if(data.type<=1){
  53. uni.navigateTo({
  54. url: `/pages/activityDetail/activityDetail?acId=${data.acId}`,
  55. });
  56. }else{
  57. uni.navigateTo({
  58. url: `/pages/teachingDetail/teachingDetail?acId=${data.acId}`
  59. });
  60. }
  61. },
  62. // 获取数据
  63. getdata() {
  64. let data = {
  65. oid: this.$store.state.user.openid, //用户id
  66. type: 2
  67. }
  68. this.$request('/selectOperator', "POST", data).then(res => {
  69. console.log(res[0]);
  70. this.activeList = res[0]
  71. })
  72. }
  73. },
  74. onShow() {
  75. this.getdata()
  76. }
  77. }
  78. </script>
  79. <style lang="scss">
  80. .activeBox {
  81. width: 100%;
  82. background-color: #fff;
  83. padding: 10px 0;
  84. .teaching_case {
  85. display: flex;
  86. justify-content: space-between;
  87. padding: 0 15px;
  88. .img {
  89. width: 160rpx;
  90. height: 160rpx;
  91. image {
  92. width: 100%;
  93. height: 100%;
  94. border-radius: 10rpx;
  95. }
  96. }
  97. .right {
  98. padding-left: 15px;
  99. flex: 1;
  100. display: flex;
  101. flex-direction: column;
  102. // align-content: flex-end;
  103. justify-content: space-between;
  104. .title {
  105. display: flex;
  106. align-items: center;
  107. margin-bottom: 5px;
  108. .tag {
  109. border: 1px #00b2b6 solid;
  110. // font-size: 20rpx;
  111. width: 64rpx;
  112. height: 38rpx;
  113. display: flex;
  114. white-space: nowrap;
  115. justify-content: center;
  116. align-items: center;
  117. padding: 1rpx 4rpx;
  118. border-radius: 3px;
  119. margin-right: 10rpx;
  120. color: #00b2b6;
  121. }
  122. text {
  123. width: 180px;
  124. overflow: hidden;
  125. text-overflow: ellipsis;
  126. white-space: nowrap;
  127. }
  128. }
  129. .introduce {
  130. width: 230px;
  131. font-size: 28rpx;
  132. color: #a7a7a7;
  133. // margin-top: 8px;
  134. overflow: hidden;
  135. text-overflow: ellipsis;
  136. white-space: nowrap;
  137. }
  138. .operate {
  139. display: flex;
  140. justify-content: space-between;
  141. align-items: baseline;
  142. .left {
  143. display: flex;
  144. flex-direction: row;
  145. justify-content: space-between;
  146. align-items: baseline;
  147. width: 260rpx;
  148. .money {
  149. color: #FFA338;
  150. font-weight: bold;
  151. font-size: 36rpx;
  152. line-height: 20px;
  153. }
  154. .person {
  155. color: #00000099;
  156. font-size: 24rpx;
  157. // margin-left: 6px;
  158. }
  159. }
  160. .Oright {
  161. width: 80px;
  162. display: flex;
  163. justify-content: flex-end;
  164. align-items: center;
  165. // flex-direction: row;
  166. // justify-content: space-around;
  167. // align-items: flex-end;
  168. .text {
  169. font-size: 24rpx;
  170. color: #3081E8;
  171. }
  172. .arrow {
  173. display: flex;
  174. justify-content: center;
  175. margin-top: 5rpx;
  176. image {
  177. width: 32rpx;
  178. height: 32rpx;
  179. }
  180. }
  181. }
  182. }
  183. }
  184. }
  185. }
  186. </style>