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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
| <template>
| <div class="specialTool">
| <div
| class="legend"
| v-for="(item, index) in list"
| :key="index"
| >
| <img
| class="img"
| :src="item.icon"
| alt=""
| :style="`width:${item.width}px;height:${item.height}px;`"
| />
| <span>{{ item.name }}</span>
| </div>
| </div>
| </template>
|
| <style scoped>
| .specialTool {
| position: absolute;
| bottom: 45px;
| /* width: 650px; */
| /* padding: 5px; */
| border: 2px solid #016ce2;
| border-radius: 3px;
| background-color: #0952c860;
| color: #fff;
| font-size: 10px;
| left: 50%;
| transform: translateX(-50%);
| z-index: 99999;
| pointer-events: all;
| padding: 10px 10px;
| padding-left: 0px;
| }
| .legend {
| /* width: 150px; */
| margin-left: 10px;
| display: flex;
| float: left;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| /* background: red; */
| }
| img {
| width: 20px;
| }
| </style>
|
| <script>
| export default {
| name: "bottom-menu",
| data() {
| return {
| list: [
| {
| name: "经开区政务服务中心",
| icon: require("../../../static/SmartEarthSDK/Workers/image/经开区政务服务中心.png"),
| },
| {
| name: "街道政务服务中心",
| icon: require("../../../static/SmartEarthSDK/Workers/image/街道.png"),
| },
| {
| name: "亦企服务港",
| icon: require("../../../static/SmartEarthSDK/Workers/image/亦企服务港.png"),
| },
| {
| name: "园区服务站",
| icon: require("../../../static/SmartEarthSDK/Workers/image/园区服务站.png"),
| },
| {
| name: "社区服务站",
| icon: require("../../../static/SmartEarthSDK/Workers/image/社区服务站.png"),
| },
| ],
| };
| },
| };
| </script>
|
|