activityDetail.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <!-- 教研室详情 -->
  3. <view class="activityDetail">
  4. <statusBar :item="navbar"></statusBar>
  5. <!-- 顶部 -->
  6. <view class="backPic">
  7. <image src="../../static/yym/Rectangle 40.png" mode="aspectFill"></image>
  8. <view class="card">
  9. <view class="cardTop">
  10. 2023年全国国际银行分行“防范灾害风险护航高质量发展”防灾减灾志愿宣传活动
  11. </view>
  12. <view class="col">
  13. 活动日期:<text>5.12~5.13</text>
  14. </view>
  15. <view class="col">
  16. 招募人数:<text>23/50</text>
  17. </view>
  18. <view class="col">
  19. 活动地址:<text>龙岗将军帽路一号深圳技师学院</text>
  20. <uni-icons type="location" color="#0056a8" size="20" style="position: absolute;right: 10px;top: 0;"></uni-icons>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 创建者用户名 -->
  25. <view style="padding: 0 30rpx;margin-bottom: 20px;">
  26. <view class="creator">
  27. <image src="../../static/mine/Avatar.png" mode="aspectFill"></image>
  28. <view class="creName">
  29. 创建者用户名
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 活动详情 -->
  34. <view class="" style="padding: 0 30rpx;">
  35. <detailBlock :item='judge'></detailBlock>
  36. </view>
  37. <!-- 当前成员 -->
  38. <view style="padding: 0 30rpx;">
  39. <view class="member">
  40. <view class="memberTop">
  41. <view class="" style="font-weight: bold;">报名情况(已报名23人)</view>
  42. <view class="" style="color: #666666;font-size: 14px;display: flex;align-items: center;">
  43. 查看更多
  44. <uni-icons type="right"></uni-icons>
  45. </view>
  46. </view>
  47. <view class="pers">
  48. <view class="per" v-for="i in 6">
  49. <image src="../../static/mine/Avatar.png" mode="aspectFill"></image>
  50. <view class="perName">
  51. 袁一鸣
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <!-- 申请加入 -->
  58. <view class="btnBlock">
  59. <button class="btn">立即报名</button>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. export default {
  65. data() {
  66. return {
  67. navbar:{
  68. title:'活动详情',
  69. btn:1
  70. },
  71. judge:{
  72. isShow:1
  73. }
  74. };
  75. }
  76. }
  77. </script>
  78. <style lang="scss">
  79. .activityDetail{
  80. padding-bottom: 80px;
  81. .backPic{
  82. width: 750rpx;
  83. position: relative;
  84. image{
  85. width: 100%;
  86. display: block;
  87. }
  88. .card{
  89. position: absolute;
  90. width: 650rpx;
  91. // height: 150px;
  92. bottom: -20px;
  93. left: 50%;
  94. padding: 30rpx 20rpx;
  95. border-radius: 10px;
  96. background-color: #ffffff;
  97. transform: translate(-50%,0);
  98. .cardTop{
  99. // display: flex;
  100. // justify-content: center;
  101. // padding-bottom: 5px;
  102. margin-bottom: 5px;
  103. // font-size: 18px;
  104. font-weight: bold;
  105. display: -webkit-box;
  106. word-break: break-all;
  107. text-overflow: ellipsis;
  108. overflow: hidden;
  109. -webkit-box-orient: vertical;
  110. -webkit-line-clamp:2;/*设置 需要显示的行数*/
  111. .title{
  112. font-weight: bold;
  113. }
  114. }
  115. .col{
  116. position: relative;
  117. margin-bottom: 10rpx;
  118. color: #999999;
  119. padding-right: 40px;
  120. font-size: 14px;
  121. width: 100%;
  122. display: -webkit-box;
  123. word-break: break-all;
  124. text-overflow: ellipsis;
  125. overflow: hidden;
  126. -webkit-box-orient: vertical;
  127. -webkit-line-clamp:2;/*设置 需要显示的行数*/
  128. text{
  129. color: #333333;
  130. }
  131. }
  132. .tag{
  133. display: flex;
  134. }
  135. }
  136. // background-image: url(../../static/resource/jqr.png);
  137. }
  138. .creator{
  139. display: flex;
  140. padding: 10px 30px;
  141. background-color: #ffffff;
  142. align-items: center;
  143. margin-top: 30px;
  144. border-radius: 10px;
  145. image{
  146. width: 60px;
  147. height: 60px;
  148. border-radius: 50%;
  149. margin-right: 20rpx;
  150. }
  151. .creName{
  152. font-weight: bold;
  153. }
  154. }
  155. .member{
  156. background-color: #ffffff;
  157. margin-top: 20px;
  158. padding: 10px 10px;
  159. border: 10px;
  160. border-radius: 10px;
  161. .memberTop{
  162. display: flex;
  163. justify-content: space-between;
  164. margin-bottom: 10px;
  165. }
  166. .pers{
  167. display: flex;
  168. justify-content: space-around;
  169. align-items: center;
  170. .per{
  171. display: inline-block;
  172. image{
  173. width: 40px;
  174. height: 40px;
  175. border-radius: 50%;
  176. }
  177. .perName{
  178. font-size: 14px;
  179. text-align: center;
  180. }
  181. }
  182. }
  183. }
  184. .btnBlock{
  185. position: fixed;
  186. bottom: 0;
  187. width: 750rpx;
  188. background-color: #ffffff;
  189. padding: 20px 0;
  190. .btn{
  191. width: 50%;
  192. margin: auto;
  193. background-color: #0056a8;
  194. color: #ffffff;
  195. font-size: 14px;
  196. }
  197. }
  198. }
  199. </style>