123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- <template>
- <div class="content">
-
- <banner></banner>
-
- <div class="btn-two">
- <router-link to="/Express">
- <img src="../assets/images/icon4.png" alt="">
- <span>
- <p>寄快递</p>
-
- </span>
- </router-link>
- <router-link to="Inexpress">
- <img src="../assets/images/icon5.png" alt="">
- <span>
- <p>内部件</p>
-
- </span>
- </router-link>
- <router-link to="Logisticslist">
- <img src="../assets/images/icon22.png" alt="">
- <span>
- <p>我的寄件</p>
-
- </span>
- </router-link>
- <router-link to="Search">
- <img src="../assets/images/a-124.png" alt="">
- <span>
- <p>我的收件</p>
-
- </span>
- </router-link>
- </div>
-
-
-
-
-
-
-
- <tabbar></tabbar>
- </div>
- </template>
- <script>
- import {Toast,Dialog} from 'vant'
-
- export default {
- data() {
- return {
- };
- },
- created:function(){
-
-
-
- this.isLogin();
- },
- methods:{
- link(){
- Toast("正在开发中,敬请期待!")
- }
- }
- };
- </script>
- <style lang="less" scoped>
- .content{
- padding: .33rem .34rem 1rem;
- .btn-two{
- font-size: .24rem;
- color: #999999;
- display: flex;
- flex-wrap: wrap;
- margin:.2rem auto;
- height: 300px;
- a{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: #999999;
- padding: .25rem 0rem;
- background: white;
- width:50%;
- border-radius: .05rem;
- justify-content: center;
- img{
- width: 1.2rem;
- height: 1.2rem;
- position: relative;
- top: .1rem;
- margin-bottom: 10px;
- }
- span{
- p:nth-of-type(1){
- font-size: .3rem;
- color:#333;
- font-weight: bold;
- margin-bottom: .1rem;
- }
- }
- }
- }
- .btn-four{
- font-size: .24rem;
- color: #999999;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin:.2rem auto;
- background: white;
- padding: .25rem .2rem;
- border-radius: .05rem;
- div{
- flex: 1;
- min-width: 48%;
- padding: .2rem 0rem;
- a{
- display: flex;
- color: #999999;
- justify-content: center;
- padding: .1rem 0rem;
- img{
- width: .52rem;
- height: .5rem;
- position: relative;
- top: .2rem;
- }
- span{
- margin-left: .25rem;
- p:nth-of-type(1){
- font-size: .3rem;
- color:#333;
- font-weight: bold;
- margin-bottom: .1rem;
- }
- }
- }
- }
- div:nth-of-type(1) a,div:nth-of-type(3) a{
- border-right: .01rem solid #f7f7f7;
- }
- div:nth-of-type(1),div:nth-of-type(2){
- border-bottom: .01rem solid #f7f7f7;
- }
- }
- .ad-two{
- font-size: .24rem;
- color: #999999;
- display: flex;
- justify-content: center;
- margin:.2rem auto;
- a{
- flex: 1;
- color: #999999;
- padding: .35rem 0rem;
- background: white;
- width:48%;
- border-radius: .05rem;
- text-align: center;
- img{
- width: .55rem;
- height: .55rem;
- margin-bottom: .1rem;
- }
- span{
- display: block;
- }
- }
- }
- .foot_icon{
- display: flex;
- justify-content: center;
- margin: .55rem auto;
- div{
- flex: 1;
- text-align: center;
- font-size: .2rem;
- color: #999999;
- img{
- width: .64rem;
- height: .64rem;
- }
- }
- }
- }
- </style>
|