PublishApply.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <template>
  2. <div class="publish-apply">
  3. <div class="good-purchaser">
  4. <p class="good-purchaser-title">
  5. <img src="/images/applyPurchase/good-purchaser-title.png" alt="">
  6. </p>
  7. <ul>
  8. <li>
  9. <i>1</i>
  10. <span>华商龙商务互联科技有限公司</span>
  11. </li>
  12. <li>
  13. <i>2</i>
  14. <span>华商龙商务互联科技有限公司</span>
  15. </li>
  16. <li>
  17. <i>3</i>
  18. <span>华商龙商务互联科技有限公司</span>
  19. </li>
  20. <li>
  21. <i>4</i>
  22. <span>华商龙商务互联科技有限公司</span>
  23. </li>
  24. <li>
  25. <i>5</i>
  26. <span>华商龙商务互联科技有限公司</span>
  27. </li>
  28. </ul>
  29. </div>
  30. <div class="publish-area">
  31. <div class="publish-form-area">
  32. <p>单个发布</p>
  33. <div>
  34. <div class="form-item">
  35. <span>
  36. <i>*</i>型号:
  37. </span>
  38. <input type="text" class="form-control" />
  39. </div>
  40. <div class="form-item">
  41. <span>
  42. <i>*</i>型号:
  43. </span>
  44. <input type="text" class="form-control" />
  45. </div>
  46. <div class="form-item">
  47. <span>
  48. <i>*</i>型号:
  49. </span>
  50. <input type="text" class="form-control" />
  51. </div>
  52. <div class="form-item">
  53. <span>
  54. 型号:
  55. </span>
  56. <input type="text" class="form-control" />
  57. </div>
  58. <div class="form-item">
  59. <span>
  60. 搜索搜索:
  61. </span>
  62. <input type="text" class="form-control" />
  63. </div>
  64. <div class="form-item">
  65. <span>
  66. <i>*</i>型号:
  67. </span>
  68. <input type="text" class="form-control" />
  69. </div>
  70. <div class="form-item">
  71. <span>
  72. <i>*</i>型号搜索:
  73. </span>
  74. <input type="text" class="form-control" />
  75. </div>
  76. </div>
  77. <a>发布求购</a>
  78. </div>
  79. <div class="publish-upload">
  80. <h1>批量发布</h1>
  81. <h2>3秒一键配单采购</h2>
  82. <img src="/images/applyPurchase/upload.png" alt="" />
  83. <h3>把Excel格式的BOM拖放到框中</h3>
  84. <img class="download-line" src="/images/applyPurchase/download.png" alt="">
  85. <img class="apply-logo" src="/images/applyPurchase/publish-apply.png" alt="">
  86. </div>
  87. </div>
  88. <div class="apply-rank">
  89. <table>
  90. <thead>
  91. <tr>
  92. <th width="62">排名</th>
  93. <th width="124">求购型号</th>
  94. <th width="57">数量</th>
  95. <th width="72">求购次数</th>
  96. </tr>
  97. </thead>
  98. </table>
  99. </div>
  100. </div>
  101. </template>
  102. <style lang="scss" scoped>
  103. .publish-apply {
  104. background: url('/images/applyPurchase/banner.png') center center/cover no-repeat;
  105. height: 583px;
  106. text-align: center;
  107. padding-top: 290px;
  108. >div {
  109. display: inline-block;
  110. border: 1px solid #3975f4;
  111. height: 267px;
  112. margin-right: 6px;
  113. vertical-align: middle;
  114. background: #fff;
  115. }
  116. .good-purchaser {
  117. width: 225px;
  118. .good-purchaser-title {
  119. height: 55px;
  120. line-height: 55px;
  121. background: #3975f4;
  122. }
  123. ul {
  124. padding: 0 22px 0 10px;
  125. li {
  126. line-height: 42px;
  127. span {
  128. float: right;
  129. display: inline-block;
  130. width: 152px;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. white-space: nowrap;
  134. }
  135. i {
  136. display: inline-block;
  137. float: left;
  138. width: 25px;
  139. background: url('/images/applyPurchase/level-1.png') center no-repeat;
  140. color: #fff;
  141. font-size: 16px;
  142. font-style: normal;
  143. }
  144. }
  145. }
  146. }
  147. .publish-area {
  148. width: 549px;
  149. .publish-form-area {
  150. width: 243px;
  151. float: left;
  152. height: 100%;
  153. p {
  154. padding-top: 18px;
  155. font-size: 26px;
  156. color: #3975f4;
  157. margin-bottom: 7px;
  158. }
  159. >div {
  160. text-align: left;
  161. margin-left: 14px;
  162. .form-item {
  163. margin-bottom: 5px;
  164. span {
  165. width: 80px;
  166. text-align: right;
  167. display: inline-block;
  168. i {
  169. position: relative;
  170. top: 2px;
  171. right: 3px;
  172. color: #e41515;
  173. }
  174. }
  175. input {
  176. width: 111px;
  177. height: 20px;
  178. line-height: 20px;
  179. border-radius: 2px;
  180. }
  181. }
  182. }
  183. >a {
  184. width: 90px;
  185. height: 25px;
  186. line-height: 25px;
  187. background: #3975f4;
  188. color: #fefefe;
  189. font-size: 16px;
  190. display: block;
  191. margin: 0 auto;
  192. border-radius: 3px;
  193. cursor: pointer;
  194. }
  195. }
  196. .publish-upload {
  197. background: url('/images/applyPurchase/publish-apply-bg.png')no-repeat;
  198. background-size: cover;
  199. width: 304px;
  200. height: 100%;
  201. padding-left: 22px;
  202. float: right;
  203. color: #fff;
  204. position: relative;
  205. h1 {
  206. font-size: 26px;
  207. margin: 22px 0 0 0;
  208. }
  209. h2 {
  210. font-size: 16px;
  211. margin: 10px 0 23px 0;
  212. }
  213. h3 {
  214. font-size: 16px;
  215. margin: 20px 0 13px 0;
  216. }
  217. .download-line {
  218. cursor: pointer;
  219. }
  220. .apply-logo {
  221. position: absolute;
  222. left: -20px;
  223. top: 86px;
  224. }
  225. }
  226. }
  227. .apply-rank {
  228. width: 317px;
  229. margin-right: 0;
  230. background: url('/images/applyPurchase/rank-title.png') no-repeat;
  231. background-color: #fff;
  232. background-size: 319px 74px;
  233. background-position: -3px -2px;
  234. table {
  235. margin: 76px auto 0;
  236. width: 98%;
  237. thead {
  238. background: #e0e0e0;
  239. height: 26px;
  240. line-height: 26px;
  241. border-radius: 3px;
  242. tr {
  243. th {
  244. font-size: 16px;
  245. font-weight: bold;
  246. }
  247. }
  248. }
  249. }
  250. }
  251. }
  252. </style>