contribute.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="page">
  3. <view class="stylebookbox">
  4. <view class="apply">投稿</view>
  5. <view class="stylebook">
  6. 感谢您的信任,选择向我们投稿!(带*号的项为必填项,其他为非必填项)
  7. </view>
  8. <view class="dotted">
  9. <image src="/static/images/dotted.png" style="width: 654rpx;height: 4rpx;" mode=""></image>
  10. </view>
  11. <!-- 姓名 -->
  12. <view class="item">
  13. <view class="name">
  14. <text>*</text>
  15. <text style="color: rgba(34, 34, 34, 1);">您的姓名</text>
  16. </view>
  17. <view class="box u-flex">
  18. <input type="text" style="width: 100%;" />
  19. </view>
  20. </view>
  21. <!-- 电话 -->
  22. <view class="item">
  23. <view class="name">
  24. <text>*</text>
  25. <text style="color: rgba(34, 34, 34, 1);">您的电话</text>
  26. </view>
  27. <view class="box u-flex">
  28. <input type="text" style="width: 100%;" />
  29. </view>
  30. </view>
  31. <!-- 邮箱 -->
  32. <view class="item">
  33. <view class="name">
  34. <text>*</text>
  35. <text style="color: rgba(34, 34, 34, 1);">您的邮箱</text>
  36. </view>
  37. <view class="box u-flex">
  38. <input type="text" style="width: 100%;" />
  39. </view>
  40. </view>
  41. <!-- 学校 -->
  42. <view class="item">
  43. <view class="name">
  44. <text>*</text>
  45. <text style="color: rgba(34, 34, 34, 1);">您所在的学校名称</text>
  46. </view>
  47. <view class="box u-flex">
  48. <input type="text" style="width: 100%;" />
  49. </view>
  50. </view>
  51. <!-- 选题名称 -->
  52. <view class="item">
  53. <view class="name">
  54. <text>*</text>
  55. <text style="color: rgba(34, 34, 34, 1);">选题名称</text>
  56. </view>
  57. <view class="box u-flex">
  58. <input type="text" style="width: 100%;" />
  59. </view>
  60. </view>
  61. <!-- 稿件状态 -->
  62. <view class="item">
  63. <view class="name">
  64. <text style="color: rgba(34, 34, 34, 1);">稿件状态</text>
  65. </view>
  66. <view class="box u-flex" style="padding-right: 28rpx;">
  67. <input placeholder-style="font-size: 26rpx;" class="input" type="text"
  68. style="width: 100%;padding: 28rpx;" placeholder="请选择" :disabled="true" />
  69. <u-icon name="arrow-down-fill" size='12' color='rgba(150, 150, 150, 1)'></u-icon>
  70. </view>
  71. </view>
  72. <view class="item">
  73. <view class="name">
  74. <text style="color: rgba(34, 34, 34, 1);">最迟出版时间</text>
  75. </view>
  76. <view class="box u-flex" style="padding: 0 28rpx;" @click="show=true">
  77. <image src="/static/images/calendar.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
  78. <u-calendar v-model="show" mode="date" @click="change"></u-calendar>
  79. </view>
  80. </view>
  81. <!-- 经费情况 -->
  82. <view class="item">
  83. <view class="name">
  84. <text style="color: rgba(34, 34, 34, 1);">经费情况</text>
  85. </view>
  86. <view class="box u-flex" style="padding-right: 28rpx;">
  87. <input placeholder-style="font-size: 26rpx;" class="input" type="text"
  88. style="width: 100%;padding: 28rpx;" placeholder="请选择" :disabled="true" />
  89. <u-icon name="arrow-down-fill" size='12' color='rgba(150, 150, 150, 1)'></u-icon>
  90. </view>
  91. </view>
  92. <!-- 上传 -->
  93. <view class="item">
  94. <view class="name">
  95. <text style="color: rgba(34, 34, 34, 1);">作者简介及目录上传</text>
  96. </view>
  97. <view class="uploading">
  98. <image src="../../static/images/uploading.png" style="width: 64rpx;height: 64rpx;" mode=""></image>
  99. <view class="up" style="margin-top: 16rpx;">选择文件</view>
  100. <view class="up">(不超过10M)</view>
  101. </view>
  102. </view>
  103. <view class="btn">
  104. 提交
  105. </view>
  106. </view>
  107. </view>
  108. </template>
  109. <script>
  110. export default {
  111. data() {
  112. return {
  113. list: [{
  114. name: '教材用书',
  115. disabled: false
  116. },
  117. {
  118. name: '学习参考',
  119. disabled: false
  120. },
  121. {
  122. name: '其他',
  123. disabled: false
  124. }
  125. ],
  126. show: false,
  127. };
  128. },
  129. methods: {
  130. change(e) {
  131. console.log(e);
  132. }
  133. }
  134. }
  135. </script>
  136. <style lang="scss" scoped>
  137. .uploading {
  138. width: 184rpx;
  139. height: 184rpx;
  140. border: 2rpx solid rgba(151, 151, 151, 0.3);
  141. display: flex;
  142. flex-direction: column;
  143. justify-content: center;
  144. align-items: center;
  145. margin-top: 22rpx;
  146. .up {
  147. font-size: 20rpx;
  148. font-family: PingFangSC, PingFang SC;
  149. font-weight: 400;
  150. color: #222222;
  151. }
  152. }
  153. .btn {
  154. // width: 614rpx;
  155. height: 82rpx;
  156. background: #06A971;
  157. border-radius: 8rpx;
  158. font-size: 32rpx;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 500;
  161. color: #FFFFFF;
  162. margin-top: 48rpx;
  163. line-height: 82rpx;
  164. text-align: center;
  165. }
  166. .address {
  167. font-size: 26rpx;
  168. font-family: PingFangSC, PingFang SC;
  169. font-weight: 400;
  170. color: #222222;
  171. }
  172. .item {
  173. margin-top: 44rpx;
  174. .name {
  175. font-size: 26rpx;
  176. font-family: PingFangSC, PingFang SC;
  177. font-weight: 500;
  178. color: #CF1534;
  179. }
  180. .box {
  181. margin-top: 24rpx;
  182. height: 72rpx;
  183. border: 2rpx solid rgba(151, 151, 151, 0.3);
  184. }
  185. }
  186. .page {
  187. background-color: rgba(246, 246, 246, 1);
  188. width: 750rpx;
  189. min-height: 100vh;
  190. padding: 20rpx 28rpx 68rpx;
  191. }
  192. .stylebookbox {
  193. background: #FFFFFF;
  194. border-radius: 12rpx;
  195. padding: 38rpx 20rpx 44rpx;
  196. .apply {
  197. font-size: 32rpx;
  198. font-family: PingFangSC, PingFang SC;
  199. font-weight: 500;
  200. color: #222222;
  201. text-align: center;
  202. }
  203. .stylebook {
  204. font-size: 26rpx;
  205. font-family: PingFangSC, PingFang SC;
  206. font-weight: 400;
  207. color: #222222;
  208. margin-top: 50rpx;
  209. }
  210. .dotted {
  211. // margin-top: 30rpx;
  212. }
  213. }
  214. </style>