activityDetail.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. <template>
  2. <!-- 教研室详情 -->
  3. <view class="activityDetail">
  4. <statusBar :item="navbar"></statusBar>
  5. <!-- 顶部 -->
  6. <view class="backPic" v-for="(item,index) in actItemList" :key="index + 'a' ">
  7. <image src="http://43.139.158.220:5007/img/static/yym/Rectangle 40.png" mode="aspectFill"></image>
  8. <view style="padding: 0 30rpx;margin-bottom: 20px;">
  9. <view class="card">
  10. <view class="cardTop three-font">
  11. {{ item.acName }}
  12. </view>
  13. <view class="col fz-font">
  14. 活动日期:<text>{{ item.begin_at}}</text>
  15. </view>
  16. <view class="col fz-font">
  17. 招募人数:<text>0/{{ item.pers }}</text>
  18. </view>
  19. <view class="col fz-font">
  20. 活动地址:<text>{{ item.address }}</text>
  21. <uni-icons type="location" color="#0056a8"
  22. style="position: absolute;right: 10px;top: 0;width: 32rpx;height: 45rpx;"></uni-icons>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. <!-- 创建者用户名 -->
  28. <view style="padding: 0 30rpx;">
  29. <view class="creator" v-for="(item,index) in actItemList" :key="index + 'b' ">
  30. <image
  31. :src="item.avatar == null ? 'http://43.139.158.220:5007/img/static/mine/Avatar_default.png' : item.avatar"
  32. mode="aspectFill"></image>
  33. <view class="creName btn-font">
  34. {{ item.username }}
  35. </view>
  36. </view>
  37. </view>
  38. <!-- 活动详情 -->
  39. <view class="" style="padding: 0 30rpx;">
  40. <detailBlock :actItemList='actItemList' :item='judge'></detailBlock>
  41. </view>
  42. <!-- 当前成员 -->
  43. <view style="padding: 0 30rpx; display: none;">
  44. <view class="member">
  45. <view class="memberTop">
  46. <view class="btn-font">报名情况(已报名0人)</view>
  47. <view class="fz-font" style="color: rgba(0, 0, 0, 0.4);display: flex;align-items: center;"
  48. @click="perList">
  49. <text>查看更多</text>
  50. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  51. style="width: 32rpx;height: 32rpx;" mode="aspectFill"></image>
  52. <!-- <uni-icons type="right"></uni-icons> -->
  53. </view>
  54. </view>
  55. <view class="pers">
  56. <!-- <view class="per" v-if="perNum == []" v-for="(item,index) in perNum">
  57. <image :src="item.img"></image>
  58. <view class="perName fz-font">
  59. {{item.Name}}
  60. </view>
  61. </view> -->
  62. <view class="per">
  63. <!-- <image :src="item.img"></image> -->
  64. <view class="perName fz-font">
  65. 暂无人员
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. <!-- 申请加入 -->
  72. <view class="btnBlock" v-show="btnShow">
  73. <button class="btn" @click="gotoAdd">立即报名</button>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. export default {
  79. data() {
  80. return {
  81. navbar: {
  82. title: '活动详情',
  83. btn: 1
  84. },
  85. btnShow: true, //控制按钮显示隐藏
  86. judge: {
  87. isShow: 1,
  88. info: ''
  89. },
  90. actItemList: [],
  91. perNum: []
  92. // perNum: [{
  93. // Name: '陈芬',
  94. // img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (3).png'
  95. // },
  96. // {
  97. // Name: '贺豪杰',
  98. // img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (4).png'
  99. // },
  100. // {
  101. // Name: '张孝迪',
  102. // img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4.png'
  103. // },
  104. // {
  105. // Name: '马冬梅',
  106. // img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (2).png'
  107. // },
  108. // {
  109. // Name: '康雯妍',
  110. // img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (1).png'
  111. // },
  112. // {
  113. // Name: '张燕琴',
  114. // img: 'http://43.139.158.220:5007/img/static/mine/Avatar.png'
  115. // }
  116. // ]
  117. };
  118. },
  119. methods: {
  120. perList() {
  121. uni.navigateTo({
  122. url: '/pages/dy/dy'
  123. })
  124. },
  125. gotoAdd() {
  126. // console.log(e.currentTarget.dataset['index'], 123);
  127. // let edata = e.currentTarget.dataset['index'];
  128. const routes = getCurrentPages();
  129. const ty = routes[1].options.ty ? routes[1].options.ty : routes[2].options.ty;
  130. const clickedAcId = this.actItemList[0].acId;
  131. console.log(clickedAcId);
  132. uni.navigateTo({
  133. url: '/pages/hd/hd?acId=' + clickedAcId + '&ty=' + ty
  134. })
  135. },
  136. getActivity() {
  137. // 获取当前页面的URL
  138. const routes = getCurrentPages();
  139. console.log(routes);
  140. // const acId = routes[1].options.acId ? routes[1].options.acId : routes[2].options.acId;
  141. // const ty = routes[1].options.ty ? routes[1].options.ty : routes[2].options.ty;
  142. // if (routes[2]) {
  143. // this.isShow = routes[2].options.isShow ?false : true
  144. // }
  145. // this.isShow = routes[2].options.isShow
  146. // console.log(this.isShow);
  147. let acId, ty, isShow;
  148. if (routes.length > 1) {
  149. acId = routes[1].options.acId ? routes[1].options.acId : routes[2].options.acId;
  150. ty = routes[1].options.ty ? routes[1].options.ty : routes[2].options.ty;
  151. isShow = routes[2] ? (routes[2].options.isShow ? false : true) : true;
  152. }
  153. this.btnShow = isShow;
  154. let data = {
  155. acId: acId,
  156. ty: ty
  157. }
  158. this.$request('/selectActivityID', "POST", data).then(res => {
  159. console.log(res[0]);
  160. // this.activeList=[...this.activeList,...res[0]]
  161. this.actItemList = res[0]
  162. })
  163. },
  164. },
  165. onShow() {
  166. this.getActivity()
  167. }
  168. }
  169. </script>
  170. <style lang="scss">
  171. .activityDetail {
  172. padding-bottom: 80px;
  173. .backPic {
  174. width: 750rpx;
  175. position: relative;
  176. image {
  177. width: 100%;
  178. display: block;
  179. }
  180. .card {
  181. position: absolute;
  182. width: 690rpx;
  183. // height: 150px;
  184. bottom: -20px;
  185. left: 50%;
  186. // padding: 30rpx 16px;
  187. padding: 30rpx;
  188. border-radius: 10px;
  189. background-color: #ffffff;
  190. transform: translate(-50%, 0);
  191. .cardTop {
  192. // display: flex;
  193. // justify-content: center;
  194. // padding-bottom: 5px;
  195. margin-bottom: 5px;
  196. // font-size: 18px;
  197. font-weight: bold;
  198. display: -webkit-box;
  199. word-break: break-all;
  200. text-overflow: ellipsis;
  201. overflow: hidden;
  202. -webkit-box-orient: vertical;
  203. -webkit-line-clamp: 2;
  204. /*设置 需要显示的行数*/
  205. .title {
  206. font-weight: bold;
  207. }
  208. }
  209. .col {
  210. position: relative;
  211. margin-bottom: 10rpx;
  212. color: #999999;
  213. padding-right: 40px;
  214. // font-size: 14px;
  215. width: 100%;
  216. display: -webkit-box;
  217. word-break: break-all;
  218. text-overflow: ellipsis;
  219. overflow: hidden;
  220. -webkit-box-orient: vertical;
  221. -webkit-line-clamp: 2;
  222. /*设置 需要显示的行数*/
  223. text {
  224. color: #333333;
  225. }
  226. }
  227. .tag {
  228. display: flex;
  229. }
  230. }
  231. // background-image: url(http://43.139.158.220:5007/img/static/resource/jqr.png);
  232. }
  233. .creator {
  234. display: flex;
  235. // padding: 10px 30px;
  236. padding: 30rpx 20rpx;
  237. background-color: #ffffff;
  238. align-items: center;
  239. margin-top: 30px;
  240. margin-bottom: 20rpx;
  241. border-radius: 10px;
  242. image {
  243. width: 96rpx;
  244. height: 96rpx;
  245. border-radius: 50%;
  246. margin-right: 20rpx;
  247. }
  248. .creName {
  249. font-weight: bold;
  250. }
  251. }
  252. .member {
  253. background-color: #ffffff;
  254. margin-top: 20rpx;
  255. padding: 30rpx;
  256. border-radius: 10px;
  257. margin-bottom: 30rpx;
  258. .memberTop {
  259. display: flex;
  260. justify-content: space-between;
  261. margin-bottom: 10px;
  262. }
  263. .pers {
  264. display: flex;
  265. justify-content: space-between;
  266. align-items: center;
  267. .per {
  268. // display: inline-block;
  269. display: flex;
  270. flex-direction: column;
  271. // justify-content: center;
  272. align-items: center;
  273. image {
  274. width: 72rpx;
  275. height: 72rpx;
  276. border-radius: 50%;
  277. }
  278. .perName {
  279. // font-size: 14px;
  280. text-align: center;
  281. }
  282. }
  283. }
  284. }
  285. .btnBlock {
  286. position: fixed;
  287. bottom: 0;
  288. width: 750rpx;
  289. background-color: #ffffff;
  290. // padding: 20px 0;
  291. padding: 2vh 0;
  292. .btn {
  293. width: 432rpx;
  294. height: 88rpx;
  295. font-weight: 500;
  296. display: flex;
  297. justify-content: center;
  298. align-items: center;
  299. margin: auto;
  300. background-color: #0056a8;
  301. color: #ffffff;
  302. }
  303. }
  304. }
  305. </style>