hd.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <view class="hd">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="top" v-for="(item,index) in actItemList" :key="index">
  5. <view class="card">
  6. <image class="image" :src="item.pic" mode="aspectFill"></image>
  7. <view class="text">
  8. <view class="text_title">
  9. <view class="manage bqZ-font">类型</view>
  10. <view class="t1 bmTit-font">{{ item.acName }}</view>
  11. </view>
  12. <view class="col sZw-font">
  13. 活动日期:{{ item.create_at.split('T')[0] }}
  14. </view>
  15. <view class="col sZw-font">
  16. 招募人数:0/{{ item.pers }}
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- <uni-card :is-shadow="false"> -->
  22. <view class="xinxi">
  23. <view class="card2">
  24. <view class="hdxx">
  25. <view class="xxTit btn-font">活动信息</view>
  26. <view class="textcolor">
  27. <view class="name sZw-font">
  28. 姓名:
  29. <input type="text" style=" text-align: right;" maxlength="10" placeholder="请输入姓名"
  30. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" v-model="nickname" />
  31. </view>
  32. <view class="name sZw-font">
  33. 联系方式:
  34. <input type="text" style=" text-align: right;" maxlength="11" placeholder="请输入联系方式"
  35. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" v-model="telephone" />
  36. </view>
  37. <view class="name sZw-font">
  38. 单位:
  39. <input type="text" style=" text-align: right;" maxlength="15" placeholder="请输入单位"
  40. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" v-model="units" />
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <!-- </uni-card> -->
  47. <view class="buttons">
  48. <view class="button-container">
  49. <button @click="button1Action" class="btn1 sZw-font">清空填写信息</button>
  50. <!-- <text class="button-spacing"></text> -->
  51. <!-- 添加间距 -->
  52. <button :disabled="isButtonDisabled" :style="isButtonDisabled ? 'background-color:#87CEFA;' : 'background-colo:#0056a8;'" @click="gotoSign" class="btn2 sZw-font">申请加入</button>
  53. </view>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. data() {
  60. return {
  61. navBarData: {
  62. title: '活动报名',
  63. btn: 1
  64. },
  65. nickname: '',
  66. telephone: '',
  67. units: '',
  68. actItemList:[],
  69. isButtonDisabled: false,
  70. };
  71. },
  72. methods: {
  73. button1Action() {
  74. this.nickname = ''
  75. this.telephone = ''
  76. this.units = ''
  77. },
  78. gotoSign() {
  79. // 这里添加按钮2点击后触发的动作
  80. if (this.nickname.trim() === '' || this.telephone.trim() === '') {
  81. uni.showToast({
  82. title: '请填写完整的表单内容',
  83. icon: 'none'
  84. });
  85. return;
  86. }
  87. let data = {
  88. acId: this.actItemList[0].acId,
  89. openid: uni.getStorageSync('oId'),
  90. acName: this.actItemList[0].acName,
  91. brief: this.actItemList[0].brief,
  92. pic: this.actItemList[0].pic,
  93. pers: this.actItemList[0].pers,
  94. acshape: this.actItemList[0].acshape,
  95. // create_at:this.actItemList[0].create_at,
  96. address: this.actItemList[0].address,
  97. type: this.actItemList[0].type,
  98. begin_at: this.actItemList[0].begin_at,
  99. endTime: this.actItemList[0].endTime,
  100. cost: this.actItemList[0].cost
  101. }
  102. console.log(data);
  103. console.log('1111');
  104. console.log(this.actItemList[0].acId);
  105. this.$request('/insertActivityEnroll', "POST", data).then(res => {
  106. console.log(res);
  107. uni.navigateTo({
  108. url: '/pages/Sign/Sign'
  109. })
  110. })
  111. },
  112. enrollPublisher(clickedAcId) {
  113. this.$request('/selectPublisher', "POST", {
  114. openid: uni.getStorageSync('oId'),
  115. acId: clickedAcId,
  116. }).then(res => {
  117. const openid = uni.getStorageSync('oId')
  118. console.log(res[0][0].openid);
  119. if (openid === res[0][0].openid) {
  120. uni.showToast({
  121. title: '您是该活动的发布者,不能报名',
  122. icon: 'none'
  123. });
  124. this.isButtonDisabled = true
  125. return;
  126. }
  127. })
  128. },
  129. getActivity() {
  130. // 获取当前页面的URL
  131. const routes = getCurrentPages();
  132. console.log(routes);
  133. const acId = routes[2].options.acId
  134. const ty = routes[2].options.ty
  135. let data = {
  136. acId: acId,
  137. ty: ty
  138. }
  139. this.$request('/selectActivityID', "POST", data).then(res => {
  140. console.log(res[0]);
  141. // this.activeList=[...this.activeList,...res[0]]
  142. this.actItemList = res[0]
  143. const clickedAcId = this.actItemList[0].acId;
  144. this.enrollPublisher(clickedAcId)
  145. })
  146. },
  147. },
  148. onShow() {
  149. this.getActivity()
  150. }
  151. };
  152. </script>
  153. <style lang="scss" scoped>
  154. .hd {
  155. .top{
  156. width: 690rpx;
  157. height: 192rpx;
  158. background-color: #ffffff;
  159. margin: auto;
  160. margin-top: 30rpx;
  161. // padding: 24rpx;
  162. padding: 16rpx 24rpx;
  163. border-radius: 10rpx;
  164. .col{
  165. color: #999999;
  166. }
  167. }
  168. .card {
  169. // margin-top: 40rpx;
  170. display: flex;
  171. .image {
  172. flex-shrink: 0;
  173. width: 160rpx;
  174. height: 160rpx;
  175. border-radius: 4px;
  176. }
  177. .text {
  178. margin-left: 10px; // 增加一点空间
  179. display: flex;
  180. flex-direction: column;
  181. justify-content: space-between;
  182. .text_title {
  183. display: flex;
  184. align-items: center;
  185. .manage {
  186. // padding:4rpx 12rpx 4rpx 12rpx;
  187. display: flex;
  188. justify-content: center;
  189. align-items: center;
  190. width: 68rpx;
  191. height: 36rpx;
  192. border-radius: 5rpx;
  193. color: #00b2b6;
  194. border: 1px solid #00b2b6;
  195. // border-radius: 10rpx;
  196. margin-right: 10rpx;
  197. }
  198. .t1 {
  199. color: black;
  200. width: 350rpx;
  201. font-weight: 550;
  202. overflow:hidden;
  203. text-overflow:ellipsis;
  204. white-space:nowrap;
  205. }
  206. }
  207. }
  208. }
  209. .xinxi{
  210. background-color: #ffffff;
  211. width: 690rpx;
  212. // height: 272rpx;
  213. margin: auto;
  214. margin-top: 20rpx;
  215. padding: 20rpx 24rpx;
  216. border-radius: 12rpx;
  217. }
  218. .hdxx {
  219. .xxTit {
  220. color: black;
  221. // font-size: 18px;
  222. // font-weight: 400px;
  223. line-height: 42px;
  224. }
  225. .textcolor {
  226. color: #999999;
  227. line-height: 42px;
  228. .name {
  229. display: flex;
  230. justify-content: space-between;
  231. margin-bottom: 20rpx;
  232. .nickname {
  233. width: 350rpx;
  234. text-align: end;
  235. // padding-right: 10rpx;
  236. // margin-right: 10rpx;
  237. font-size: 28rpx;
  238. color: rgb(153, 153, 153);
  239. }
  240. }
  241. }
  242. }
  243. .buttons {
  244. background-color: white;
  245. position: fixed;
  246. bottom: 0;
  247. left: 0;
  248. width: 100%;
  249. display: flex;
  250. justify-content: space-around;
  251. align-items: center;
  252. height: 137rpx;
  253. // padding-bottom: 50rpx;
  254. // font-size: 30rpx;
  255. .button-container {
  256. width: 100%;
  257. display: flex;
  258. justify-content: space-around;
  259. .btn1{
  260. width: 326rpx;
  261. height: 71rpx;
  262. border: 1px solid #666666;
  263. border-radius: 50px;
  264. height: 70rpx;
  265. line-height: 70rpx;
  266. // font-size: 35rpx;
  267. color: #666666;
  268. }
  269. .btn2{
  270. width: 326rpx;
  271. height: 71rpx;
  272. background-color: #0056a8;
  273. border-radius: 50px;
  274. height: 70rpx;
  275. line-height: 70rpx;
  276. color: #ffffff;
  277. }
  278. }
  279. }
  280. }
  281. </style>