index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <div class="content">
  3. <!-- banner图 -->
  4. <banner></banner>
  5. <!-- 寄件按钮 -->
  6. <div class="btn-two">
  7. <router-link to="/Express">
  8. <img src="../assets/images/icon4.png" alt="">
  9. <span>
  10. <p>寄快递</p>
  11. <!-- <p>放心寄 丢必赔</p> -->
  12. </span>
  13. </router-link>
  14. <router-link to="Inexpress">
  15. <img src="../assets/images/icon5.png" alt="">
  16. <span>
  17. <p>内部件</p>
  18. <!-- <p>让工作 更便捷</p> -->
  19. </span>
  20. </router-link>
  21. <router-link to="Logisticslist">
  22. <img src="../assets/images/icon22.png" alt="">
  23. <span>
  24. <p>我的寄件</p>
  25. <!-- <p>让工作 更便捷</p> -->
  26. </span>
  27. </router-link>
  28. <router-link to="Search">
  29. <img src="../assets/images/a-124.png" alt="">
  30. <span>
  31. <p>我的收件</p>
  32. <!-- <p>让工作 更便捷</p> -->
  33. </span>
  34. </router-link>
  35. </div>
  36. <tabbar></tabbar>
  37. </div>
  38. </template>
  39. <script>
  40. import { Toast, Dialog } from 'vant'
  41. import { getWxUserInfo } from '../api/login'
  42. import { getWxOpenId } from '../script/wxGetOpenId'
  43. export default {
  44. data() {
  45. return {
  46. };
  47. },
  48. created: async function () {
  49. // this.getOpenid();
  50. console.log('开始走了')
  51. getWxOpenId()
  52. },
  53. methods: {
  54. link() {
  55. Toast("正在开发中,敬请期待!")
  56. }
  57. }
  58. };
  59. </script>
  60. <style lang="less" scoped>
  61. .content {
  62. padding: .33rem .34rem 1rem;
  63. .btn-two {
  64. font-size: .24rem;
  65. color: #999999;
  66. display: flex;
  67. flex-wrap: wrap;
  68. margin: .2rem auto;
  69. height: 300px;
  70. a {
  71. display: flex;
  72. flex-direction: column;
  73. align-items: center;
  74. justify-content: center;
  75. color: #999999;
  76. padding: .25rem 0rem;
  77. background: white;
  78. width: 50%;
  79. border-radius: .05rem;
  80. justify-content: center;
  81. img {
  82. width: 1.2rem;
  83. height: 1.2rem;
  84. position: relative;
  85. top: .1rem;
  86. margin-bottom: 10px;
  87. }
  88. span {
  89. p:nth-of-type(1) {
  90. font-size: .3rem;
  91. color: #333;
  92. font-weight: bold;
  93. margin-bottom: .1rem;
  94. }
  95. }
  96. }
  97. }
  98. .btn-four {
  99. font-size: .24rem;
  100. color: #999999;
  101. display: flex;
  102. flex-wrap: wrap;
  103. justify-content: space-between;
  104. margin: .2rem auto;
  105. background: white;
  106. padding: .25rem .2rem;
  107. border-radius: .05rem;
  108. div {
  109. flex: 1;
  110. min-width: 48%;
  111. padding: .2rem 0rem;
  112. a {
  113. display: flex;
  114. color: #999999;
  115. justify-content: center;
  116. padding: .1rem 0rem;
  117. img {
  118. width: .52rem;
  119. height: .5rem;
  120. position: relative;
  121. top: .2rem;
  122. }
  123. span {
  124. margin-left: .25rem;
  125. p:nth-of-type(1) {
  126. font-size: .3rem;
  127. color: #333;
  128. font-weight: bold;
  129. margin-bottom: .1rem;
  130. }
  131. }
  132. }
  133. }
  134. div:nth-of-type(1) a,
  135. div:nth-of-type(3) a {
  136. border-right: .01rem solid #f7f7f7;
  137. }
  138. div:nth-of-type(1),
  139. div:nth-of-type(2) {
  140. border-bottom: .01rem solid #f7f7f7;
  141. }
  142. }
  143. .ad-two {
  144. font-size: .24rem;
  145. color: #999999;
  146. display: flex;
  147. justify-content: center;
  148. margin: .2rem auto;
  149. a {
  150. flex: 1;
  151. color: #999999;
  152. padding: .35rem 0rem;
  153. background: white;
  154. width: 48%;
  155. border-radius: .05rem;
  156. text-align: center;
  157. img {
  158. width: .55rem;
  159. height: .55rem;
  160. margin-bottom: .1rem;
  161. }
  162. span {
  163. display: block;
  164. }
  165. }
  166. }
  167. .foot_icon {
  168. display: flex;
  169. justify-content: center;
  170. margin: .55rem auto;
  171. div {
  172. flex: 1;
  173. text-align: center;
  174. font-size: .2rem;
  175. color: #999999;
  176. img {
  177. width: .64rem;
  178. height: .64rem;
  179. }
  180. }
  181. }
  182. }
  183. </style>