service.vue
1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<template>
<div>
<div style="height: 300px">
<mt-swipe :auto="4000">
<mt-swipe-item style="background-color: #f00">1</mt-swipe-item>
<mt-swipe-item style="background-color: #ff0">2</mt-swipe-item>
<mt-swipe-item style="background-color: #f0f">3</mt-swipe-item>
</mt-swipe>
</div>
<flexbox :gutter="0">
<flexbox-item class="nav-warp">
<div>
<img src="../../assets/images/service/carservice.png" height="32" width="32"/>
</div>
<p>汽车服务</p>
</flexbox-item>
<flexbox-item class="nav-warp">
<div>
<img src="../../assets/images/service/safeservice.png" height="32" width="32"/>
</div>
<p>保险服务</p>
</flexbox-item>
<flexbox-item class="nav-warp">
<div>
<img src="../../assets/images/service/tripservice.png" height="32" width="32"/>
</div>
<p>出行服务</p>
</flexbox-item>
</flexbox>
</div>
</template>
<script>
export default {
name: "service"
};
</script>
<style scoped lang="scss">
.nav-warp{
padding-top: 20px;
text-align: center;
font-size: 16px;
img{
display: inline-block;
}
}
</style>