You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1015 B
29 lines
1015 B
<template>
|
|
<view class="v-traffic-box">
|
|
<image src="https://www.lbgjtoa.com/upload/appImg/v-address_01.jpg" class="v-traffic-img" mode="widthFix"></image>
|
|
<image @click="goToPages()" src="https://www.lbgjtoa.com/upload/appImg/v-address_02.jpg" class="v-traffic-img" mode="widthFix"></image>
|
|
<image src="https://www.lbgjtoa.com/upload/appImg/v-address_03.jpg" class="v-traffic-img" mode="widthFix"></image>
|
|
<image src="https://www.lbgjtoa.com/upload/appImg/v-address_04.jpg" class="v-traffic-img" mode="widthFix"></image>
|
|
<image src="https://www.lbgjtoa.com/upload/appImg/v-address_05.jpg" class="v-traffic-img" mode="widthFix"></image>
|
|
<image src="https://www.lbgjtoa.com/upload/appImg/v-address_06.jpg" class="v-traffic-img" mode="widthFix"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
goToPages: function() {
|
|
uni.switchTab({
|
|
url: '/pages/daolan/daolan'
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.v-traffic-img {
|
|
width: 100%;
|
|
margin-bottom: -10rpx;
|
|
}
|
|
</style>
|
|
|