publish.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <view class="publish">
  3. <statusBar :item="navBarData"></statusBar>
  4. <input class="activity_title" placeholder="活动标题" />
  5. <textarea class="text" placeholder="请输入内容"></textarea>
  6. <template>
  7. <u-upload>
  8. <view class="addPhoto">
  9. <image src="../../static/publish/photo.png" mode="aspectFill"></image>
  10. <view class="photo">添加图片</view>
  11. <view class="num">(0/9)</view>
  12. </view>
  13. </u-upload>
  14. </template>
  15. <template>
  16. <view class="userOptionsBox">
  17. <view class="optionsItemBox">
  18. <view class="optionItem">
  19. <view class="option_left">
  20. <text class="option_text">
  21. 招募人数
  22. </text>
  23. </view>
  24. <view class="option_right">
  25. <image src="../../static/mine/arrow-right.png" mode="aspectFill"></image>
  26. </view>
  27. </view>
  28. <view class="optionItem">
  29. <view class="option_left">
  30. <text class="option_text">
  31. 活动形式
  32. </text>
  33. </view>
  34. <view class="option_right">
  35. <image src="../../static/mine/arrow-right.png" mode="aspectFill"></image>
  36. </view>
  37. </view>
  38. <view class="optionItem">
  39. <view class="option_left">
  40. <text class="option_text">
  41. 活动地址
  42. </text>
  43. </view>
  44. <view class="option_right">
  45. <image src="../../static/mine/arrow-right.png" mode="aspectFill"></image>
  46. </view>
  47. </view>
  48. <view class="optionItem">
  49. <view class="option_left">
  50. <text class="option_text">
  51. 活动时间
  52. </text>
  53. </view>
  54. <view class="option_right">
  55. <image src="../../static/mine/arrow-right.png" mode="aspectFill"></image>
  56. </view>
  57. </view>
  58. <view class="optionItem">
  59. <view class="option_left">
  60. <text class="option_text">
  61. 活动费用
  62. </text>
  63. </view>
  64. <view class="option_right">
  65. <image src="../../static/mine/arrow-right.png" mode="aspectFill"></image>
  66. </view>
  67. </view>
  68. <view class="optionItem">
  69. <view class="option_left">
  70. <text class="option_text">
  71. 报名截止
  72. </text>
  73. </view>
  74. <view class="option_right">
  75. <image src="../../static/mine/arrow-right.png" mode="aspectFill"></image>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. </template>
  81. <template>
  82. <view class="publish_now">
  83. <button class="btn">立即发布</button>
  84. </view>
  85. </template>
  86. </view>
  87. </template>
  88. <script>
  89. export default {
  90. data() {
  91. return {
  92. navBarData:{
  93. title:'发布', //导航栏标题
  94. btn:0 //是否显示返回按钮 0不显示 1 显示
  95. },
  96. customStyle:{
  97. width:'300rpx',
  98. height:'80rpx',
  99. backgroundColor:'#8BBEFF'
  100. }
  101. };
  102. }
  103. }
  104. </script>
  105. <style lang="scss" scoped>
  106. .publish{
  107. height: 80%;
  108. background-color: #fff;
  109. .activity_title{
  110. padding: 16px;
  111. }
  112. .text{
  113. font-size: 13px;
  114. padding: 16px;
  115. }
  116. .addPhoto{
  117. image{
  118. width: 50px;
  119. height: 50px;
  120. margin-left: 48px;
  121. }
  122. .photo{
  123. color: #000000A3;
  124. padding-left: 44px;
  125. font-size: 14px;
  126. }
  127. .num{
  128. color: #000000A3;
  129. padding-left: 56px;
  130. font-size: 14px;
  131. }
  132. }
  133. .userOptionsBox {
  134. width: 100%;
  135. margin-top: 10px;
  136. .optionsItemBox {
  137. width: 100%;
  138. margin-bottom: 10px;
  139. padding: 5px 23px;
  140. .optionItem {
  141. display: flex;
  142. justify-content: space-between;
  143. align-items: center;
  144. height: 81rpx;
  145. font-size: 24rpx;
  146. .option_left {
  147. display: flex;
  148. align-items: center;
  149. height: 40rpx;
  150. }
  151. .option_right {
  152. height: 40rpx;
  153. image {
  154. height: 32rpx;
  155. width: 32rpx;
  156. }
  157. }
  158. }
  159. }
  160. }
  161. .publish_now{
  162. display: flex;
  163. .btn{
  164. width: 420rpx;
  165. height: 70rpx;
  166. background-color: #8BBEFF;
  167. color: #fff;
  168. margin-top: 20px;
  169. margin-bottom: 100rpx;
  170. line-height: 70rpx;
  171. }
  172. }
  173. }
  174. </style>