hd.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <view class="hd">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="top">
  5. <view class="card">
  6. <image class="image" src="http://43.139.158.220:5007/img/static/mine/img11.jpg" 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">创业意识与商机识别</view>
  11. </view>
  12. <view class="col sZw-font">
  13. 活动日期:5.12~5.13
  14. </view>
  15. <view class="col sZw-font">
  16. 招募人数:23/50
  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. <text class="name1 sZw-font">曾秀臻</text>
  30. </view>
  31. <view class="name sZw-font">
  32. 联系方式:
  33. <text class="lx1 sZw-font">172xxxxx5678</text>
  34. </view>
  35. <view class="name sZw-font">
  36. 单位:
  37. <text class="dw1 sZw-font">深圳职业技术大学</text>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. <!-- </uni-card> -->
  44. <view class="buttons">
  45. <view class="button-container">
  46. <button @click="button1Action" class="btn1 sZw-font">清空填写信息</button>
  47. <!-- <text class="button-spacing"></text> -->
  48. <!-- 添加间距 -->
  49. <button @click="button2Action" class="btn2 sZw-font">申请加入</button>
  50. </view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. navBarData: {
  59. title: '活动报名',
  60. btn: 1
  61. }
  62. };
  63. },
  64. methods: {
  65. button1Action() {
  66. // 这里添加按钮1点击后触发的动作
  67. console.log('Button 1 clicked');
  68. },
  69. button2Action() {
  70. // 这里添加按钮2点击后触发的动作
  71. console.log('Button 2 clicked');
  72. }
  73. }
  74. };
  75. </script>
  76. <style lang="scss" scoped>
  77. .hd {
  78. .top{
  79. width: 690rpx;
  80. height: 192rpx;
  81. background-color: #ffffff;
  82. margin: auto;
  83. margin-top: 30rpx;
  84. // padding: 24rpx;
  85. padding: 16rpx 24rpx;
  86. border-radius: 10rpx;
  87. .col{
  88. color: #999999;
  89. }
  90. }
  91. .card {
  92. // margin-top: 40rpx;
  93. display: flex;
  94. .image {
  95. flex-shrink: 0;
  96. width: 160rpx;
  97. height: 160rpx;
  98. border-radius: 4px;
  99. }
  100. .text {
  101. margin-left: 10px; // 增加一点空间
  102. display: flex;
  103. flex-direction: column;
  104. justify-content: space-between;
  105. .text_title {
  106. display: flex;
  107. align-items: center;
  108. .manage {
  109. // padding:4rpx 12rpx 4rpx 12rpx;
  110. display: flex;
  111. justify-content: center;
  112. align-items: center;
  113. width: 68rpx;
  114. height: 36rpx;
  115. border-radius: 5rpx;
  116. color: #00b2b6;
  117. border: 1px solid #00b2b6;
  118. // border-radius: 10rpx;
  119. margin-right: 10rpx;
  120. }
  121. .t1 {
  122. color: black;
  123. width: 350rpx;
  124. font-weight: 550;
  125. overflow:hidden;
  126. text-overflow:ellipsis;
  127. white-space:nowrap;
  128. }
  129. }
  130. }
  131. }
  132. .xinxi{
  133. background-color: #ffffff;
  134. width: 690rpx;
  135. // height: 272rpx;
  136. margin: auto;
  137. margin-top: 20rpx;
  138. padding: 20rpx 24rpx;
  139. border-radius: 12rpx;
  140. }
  141. .hdxx {
  142. .xxTit {
  143. color: black;
  144. // font-size: 18px;
  145. // font-weight: 400px;
  146. line-height: 42px;
  147. }
  148. .textcolor {
  149. color: #999999;
  150. line-height: 42px;
  151. .name {
  152. display: flex;
  153. justify-content: space-between;
  154. margin-bottom: 20rpx;
  155. }
  156. }
  157. }
  158. .buttons {
  159. background-color: white;
  160. position: fixed;
  161. bottom: 0;
  162. left: 0;
  163. width: 100%;
  164. display: flex;
  165. justify-content: space-around;
  166. align-items: center;
  167. height: 137rpx;
  168. // padding-bottom: 50rpx;
  169. // font-size: 30rpx;
  170. .button-container {
  171. width: 100%;
  172. display: flex;
  173. justify-content: space-around;
  174. .btn1{
  175. width: 326rpx;
  176. height: 71rpx;
  177. border: 1px solid #666666;
  178. border-radius: 50px;
  179. height: 70rpx;
  180. line-height: 70rpx;
  181. // font-size: 35rpx;
  182. color: #666666;
  183. }
  184. .btn2{
  185. width: 326rpx;
  186. height: 71rpx;
  187. background-color: #0056a8;
  188. border-radius: 50px;
  189. height: 70rpx;
  190. line-height: 70rpx;
  191. color: #ffffff;
  192. }
  193. }
  194. }
  195. }
  196. </style>