北京经济技术开发区经开区虚拟城市项目-【前端】--政府服务中心-1号屏Web
AdaKing88
2023-10-06 46b57efb47114c89f1c5cac0b4f14af7c396612f
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
<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: 680px;
  padding: 5px;
  border: 2px solid #016ce2;
  border-radius: 3px;
  background-color: #0952c860;
  color: #fff;
  font-size: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  pointer-events: all;
  display: flex;
  justify-content: space-between;
}
.legend {
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
img {
  width: 40px;
}
</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>