home.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view>
  3. <view class="header">
  4. <view class="flex justify-between map">
  5. <view class='Medium flex align-item-center locationwrap'>
  6. <image class='location' src="../../static/img/liangmai/icon_ditu.png" mode=""></image>
  7. 黑龙江中天昊元…
  8. </view>
  9. <view class='Regular flex align-item-center distribution justify-center'>
  10. <image class='cangku' src="../../static/img/liangmai/cangku.png" mode=""></image>
  11. 分布
  12. </view>
  13. </view>
  14. <view class="cu-bar search">
  15. <view class="search-form round" @click="naviageToPage('')">
  16. <image class='icon-scarch' src="../../static/img/liangmai/sousuo.png" mode=""></image>
  17. <view class='Regular'> 请输入货名或标题</view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="content">
  22. <view class="friendcircle">
  23. <view class='title flex align-item-center Medium'>
  24. <image class='icon-friendcircle' src="../../static/img/liangmai/icon.png" mode=""></image>
  25. 圈友说
  26. </view>
  27. <view class='friendcircle-content flex justify-between'>
  28. <image class='bg' src="../../static/img/liangmai/bg.png" mode=""></image>
  29. <view class='friendcircle-content-right'>
  30. <view class='friendcircle-content-right-item Regular flex align-item-center'><image class='headportrait' src="../../static/img/add@3x.png" mode=""></image>中天昊元粮库中天昊元…</view>
  31. <view class='friendcircle-content-right-item Regular flex align-item-center'><image class='headportrait' src="../../static/img/add@3x.png" mode=""></image>中天昊元粮库中天昊元…</view>
  32. <view class='friendcircle-content-right-item Regular flex align-item-center'><image class='headportrait' src="../../static/img/add@3x.png" mode=""></image>中天昊元粮库中天昊元…</view>
  33. <view class='friendcircle-content-right-item Regular flex align-item-center'><image class='headportrait' src="../../static/img/add@3x.png" mode=""></image>中天昊元粮库中天昊元…</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. components: {
  43. },
  44. data() {
  45. return {
  46. guidePages:true
  47. }
  48. },
  49. onLoad(){
  50. },
  51. methods: {
  52. }
  53. }
  54. </script>
  55. <style scoped>
  56. /* 《--头部 */
  57. .header{
  58. padding:0 12.5px;
  59. background:#fff;
  60. border-radius:0 0 10px 10px;
  61. }
  62. /* 头部--》 */
  63. /* 《--定位 */
  64. .location{
  65. width:15.5px;height:17.5px;margin-right:2.5px;
  66. }
  67. .locationwrap{
  68. font-size:16px;
  69. }
  70. /* 定位 --》 */
  71. /* 《--分布 */
  72. .map{
  73. padding:8.5px 0;
  74. }
  75. .cangku{
  76. width:16.5px;height:16.5px;margin-right:5px;
  77. }
  78. .distribution{
  79. background:#F5F6FA;
  80. width: 71.5px;
  81. height:32px;
  82. border-radius:15px;
  83. font-size:12px;
  84. }
  85. /* 分布--》 */
  86. /* 《--搜索 */
  87. .cu-bar .search-form{
  88. background:#F5F6F9;
  89. margin:0;
  90. margin-bottom:18px;
  91. padding:10px 18px;
  92. }
  93. .icon-scarch{
  94. width:15px;
  95. height:15px;
  96. margin-right:5px;
  97. }
  98. /* 搜索--》 */
  99. /* 《--内容 */
  100. .content{
  101. margin-top:13px;
  102. }
  103. /* 内容--》 */
  104. /* 《--圈友说 */
  105. .friendcircle{
  106. background:#fff;
  107. margin:0 9px;
  108. border-radius:4px;
  109. }
  110. .friendcircle .title{
  111. font-size:16px;
  112. padding:11.5px 14.5px;
  113. }
  114. .icon-friendcircle{
  115. width:17px;height: 17px;margin-right:5.5px;
  116. }
  117. .bg{
  118. width:110px;height:124px;
  119. }
  120. .friendcircle-content{
  121. padding:0 17px 18px;
  122. }
  123. .friendcircle-content-right{
  124. margin-left:15.5px;
  125. }
  126. .friendcircle-content-right-item{
  127. background: linear-gradient(90deg, #F5F6FA 0%, #FFFFFF 100%);
  128. border-radius:12.5px;
  129. margin-bottom:10px;
  130. width:205.5px;
  131. font-size:12px;
  132. }
  133. .headportrait{
  134. width:22.5px;height:22.5px;
  135. margin-right:8.5px;
  136. }
  137. /* 圈友说--》 */
  138. </style>