index.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. export default {
  43. data() {
  44. return {
  45. };
  46. },
  47. created: async function () {
  48. this.getOpenid("index.html");
  49. // const code = getUrlParam('code');
  50. // if (code) {
  51. // const res = await getWxUserInfo({ code: code, userId: localStorage.getItem("userId") })
  52. // console.log(res, '==========res')
  53. // }
  54. },
  55. methods: {
  56. link() {
  57. Toast("正在开发中,敬请期待!")
  58. }
  59. }
  60. };
  61. </script>
  62. <style lang="less" scoped>
  63. .content {
  64. padding: .33rem .34rem 1rem;
  65. .btn-two {
  66. font-size: .24rem;
  67. color: #999999;
  68. display: flex;
  69. flex-wrap: wrap;
  70. margin: .2rem auto;
  71. height: 300px;
  72. a {
  73. display: flex;
  74. flex-direction: column;
  75. align-items: center;
  76. justify-content: center;
  77. color: #999999;
  78. padding: .25rem 0rem;
  79. background: white;
  80. width: 50%;
  81. border-radius: .05rem;
  82. justify-content: center;
  83. img {
  84. width: 1.2rem;
  85. height: 1.2rem;
  86. position: relative;
  87. top: .1rem;
  88. margin-bottom: 10px;
  89. }
  90. span {
  91. p:nth-of-type(1) {
  92. font-size: .3rem;
  93. color: #333;
  94. font-weight: bold;
  95. margin-bottom: .1rem;
  96. }
  97. }
  98. }
  99. }
  100. .btn-four {
  101. font-size: .24rem;
  102. color: #999999;
  103. display: flex;
  104. flex-wrap: wrap;
  105. justify-content: space-between;
  106. margin: .2rem auto;
  107. background: white;
  108. padding: .25rem .2rem;
  109. border-radius: .05rem;
  110. div {
  111. flex: 1;
  112. min-width: 48%;
  113. padding: .2rem 0rem;
  114. a {
  115. display: flex;
  116. color: #999999;
  117. justify-content: center;
  118. padding: .1rem 0rem;
  119. img {
  120. width: .52rem;
  121. height: .5rem;
  122. position: relative;
  123. top: .2rem;
  124. }
  125. span {
  126. margin-left: .25rem;
  127. p:nth-of-type(1) {
  128. font-size: .3rem;
  129. color: #333;
  130. font-weight: bold;
  131. margin-bottom: .1rem;
  132. }
  133. }
  134. }
  135. }
  136. div:nth-of-type(1) a,
  137. div:nth-of-type(3) a {
  138. border-right: .01rem solid #f7f7f7;
  139. }
  140. div:nth-of-type(1),
  141. div:nth-of-type(2) {
  142. border-bottom: .01rem solid #f7f7f7;
  143. }
  144. }
  145. .ad-two {
  146. font-size: .24rem;
  147. color: #999999;
  148. display: flex;
  149. justify-content: center;
  150. margin: .2rem auto;
  151. a {
  152. flex: 1;
  153. color: #999999;
  154. padding: .35rem 0rem;
  155. background: white;
  156. width: 48%;
  157. border-radius: .05rem;
  158. text-align: center;
  159. img {
  160. width: .55rem;
  161. height: .55rem;
  162. margin-bottom: .1rem;
  163. }
  164. span {
  165. display: block;
  166. }
  167. }
  168. }
  169. .foot_icon {
  170. display: flex;
  171. justify-content: center;
  172. margin: .55rem auto;
  173. div {
  174. flex: 1;
  175. text-align: center;
  176. font-size: .2rem;
  177. color: #999999;
  178. img {
  179. width: .64rem;
  180. height: .64rem;
  181. }
  182. }
  183. }
  184. }
  185. </style>