home.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>
  24. <view></view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. components: {
  31. },
  32. data() {
  33. return {
  34. guidePages:true
  35. }
  36. },
  37. onLoad(){
  38. },
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style scoped>
  44. /* 《--头部 */
  45. .header{
  46. padding:0 12.5px;
  47. background:#fff;
  48. border-radius:0 0 10px 10px;
  49. }
  50. /* 头部--》 */
  51. /* 《--定位 */
  52. .location{
  53. width:15.5px;height:17.5px;margin-right:2.5px;
  54. }
  55. .locationwrap{
  56. font-size:16px;
  57. }
  58. /* 定位 --》 */
  59. /* 《--分布 */
  60. .map{
  61. padding:8.5px 0;
  62. }
  63. .cangku{
  64. width:16.5px;height:16.5px;margin-right:5px;
  65. }
  66. .distribution{
  67. background:#F5F6FA;
  68. width: 71.5px;
  69. height:32px;
  70. border-radius:15px;
  71. font-size:12px;
  72. }
  73. /* 分布--》 */
  74. /* 《--搜索 */
  75. .cu-bar .search-form{
  76. background:#F5F6F9;
  77. margin:0;
  78. margin-bottom:18px;
  79. padding:10px 18px;
  80. }
  81. .icon-scarch{
  82. width:15px;
  83. height:15px;
  84. margin-right:5px;
  85. }
  86. /* 搜索--》 */
  87. /* 《--内容 */
  88. .content{
  89. margin-top:13px;
  90. }
  91. /* 内容--》 */
  92. /* 《--圈友说 */
  93. .friendcircle{
  94. background:#fff;
  95. margin:0 9px;
  96. }
  97. /* 圈友说--》 */
  98. </style>