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
83
84
85
86
| <template>
| <!-- 综合查询 -->
| <div class="comprehensiveQuery">
| <div class="top-title">
| <the-icon-card
| v-for="(item, index) in dataList"
| :key="index"
| :title="item.title"
| :icon="item.icon"
| :unit="item.unit"
| :metering="item.metering"
| :colorBg="item.colorBg"
| ></the-icon-card>
| </div>
| <div></div>
| <div>
| <the-box-card></the-box-card>
| </div>
| </div>
| </template>
|
| <script lang="ts" setup name="TheIconCard">
| import { useTheme } from "@/hooks/useTheme";
| import { Svg } from "@easyfe/admin-component";
|
| const { themeModeOptions, currentThemeMode, handleThemeChange } = useTheme();
| const dataList = reactive([
| {
| title: "实有房屋",
| icon: "icon-house",
| unit: "栋",
| metering: 110,
| colorBg: "#2e85ff"
| },
| {
| title: "自主",
| icon: "icon-people",
| unit: "栋",
| metering: 10,
| colorBg: "#30C1A9"
| },
| {
| title: "出租",
| icon: "icon-house",
| unit: "栋",
| metering: 220,
| colorBg: "#E36B4D"
| },
| {
| title: "实有人口",
| icon: "icon-people",
| unit: "人",
| metering: 420,
| colorBg: "#2E85FF"
| },
| {
| title: "流动人员",
| icon: "icon-people",
| unit: "人",
| metering: 220,
| colorBg: "#30C1A9"
| },
| {
| title: "实有单位",
| icon: "menu-house",
| unit: "个",
| metering: 220,
| colorBg: "#FF4343"
| },
| {
| title: "再业",
| icon: "menu-house",
| unit: "个",
| metering: 220,
| colorBg: "#9747FF"
| }
| ]);
| </script>
|
| <style lang="scss" scoped>
| .comprehensiveQuery {
| .top-title {
| display: flex;
| }
| }
| </style>
|
|