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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
| <script setup>
| import { Text } from 'vue';
| import publicContent from './publicContent.vue'
| const { VITE_APP_BASE } = import.meta.env
| import { getDetail } from '@/api/indParkInfo'
|
| let state = reactive({
| parkInfo: {}
| })
|
| // 企业信息统计数组
| let parkInfoList = ref([
| {
| id: 1,
| name: 'plaArea',
| title: '园区面积',
| content: '1000',
| unit: '公顷',
| img: 'images/雨量站@2x.png'
| },
| {
| id: 2,
| name: 'recNum',
| title: '救援人员数量',
| content: '1000',
| unit: '人',
| img: 'images/雨量站@2x.png'
|
| },
| {
| id: 3,
| name: 'riskFirmNum',
| title: '风险企业数量',
| content: '1000',
| img: 'images/雨量站@2x.png'
| },
| {
| id: 4,
| name: 'proTarNum',
| title: '保护目标数量',
| content: '1000',
| img: 'images/雨量站@2x.png'
| },
| {
| id: 5,
| name: 'spaceNum',
| title: '应急空间数量',
| content: '1000',
| img: 'images/雨量站@2x.png'
| },
| {
| id: 6,
| name: 'firmNum',
| title: '企业数量',
| content: '1000',
| img: 'images/雨量站@2x.png'
| }
| ]
| )
|
|
|
|
| // 初始化
| onMounted(() => {
| getData()
|
| })
| // 获取详情
| function getData() {
| getDetail().then(res => {
| state.parkInfo = res.data.data
| parkInfoList.value.forEach(item => {
| if (item.name == 'plaArea') {
| state.parkInfo[item.name] && (item.content = (state.parkInfo[item.name] * 100).toFixed(2))
| } else {
| state.parkInfo[item.name] && (item.content = state.parkInfo[item.name])
| }
| })
| }).catch(err => {
| console.log(err)
| })
| }
|
|
|
| </script>
|
| <template>
| <public-content>
| <template #content>
| <div class="box-content-box">
| <div class="box-content">
| <div>
| <div class="box-content-img">
| <img :src="state.parkInfo.imageUrls" alt="">
| {{ state.parkInfo.remark }}
| </div>
| </div>
| </div>
|
| <div class="container">
| <div class="box-content-sj" v-for="item in parkInfoList" :key="item.id">
| <img :src="VITE_APP_BASE + item.img" alt="">
| <div>
| <div class="box-content-ss">
| <div>
| <div class="box-content-text-title">
| <span class="box-content-text-title-span">{{ item.content }}</span>
| </div>
| </div>
| <div>
| <div class="box-content-text-content">
| <text class="box-content-text-content-span">{{ item.title }}</text>
| <text v-if="item.unit" class="box-content-text-content-span">({{ item.unit }})</text>
| </div>
| </div>
| </div>
| </div>
| </div>
| </div>
| </div>
| </template>
| </public-content>
| </template>
|
| <style lang="scss" scoped>
| .box-content-box {
| color: #fff;
| font-size: 15px;
| }
|
| .box-content {
| display: flex;
| justify-content: space-between;
| }
|
| .box-content-img {
| height: 300px;
| overflow: scroll;
| // 隐藏滚动条
| scrollbar-width: none;
| }
|
| .box-content-img img {
| float: left;
| margin: 5px;
| /* 宽度可以根据实际情况调整 */
| width: 120px;
| height: 120px;
| }
|
| .box-content-title img {
| width: 80px;
| height: 80px;
| }
|
| .box-content-text {
| padding-left: 5px;
| height: 300px;
| overflow: scroll;
| // 隐藏滚动条
| scrollbar-width: none;
|
| }
|
| .container {
| display: flex;
| flex-wrap: wrap;
| gap: 5px;
| }
|
| .box-content-sj {
| flex: 1 1 31%;
| /* 每个盒子占据大约31%的宽度,留出一些空间用于间距 */
| min-width: 100px;
| /* 最小宽度,防止在非常小的屏幕上变得太窄 */
| box-sizing: border-box;
| padding: 5px;
| // border: 1px solid #ccc;
| display: flex;
| // 设置高度
| align-items: center;
| }
|
| .box-content-sj img {
| max-width: 60%;
| height: 60px;
| }
|
| .box-content-ss {
| margin: 0px 0px 0px 10px;
| }
|
| .box-content-text-title,
| .box-content-text-content {
| margin-top: 5px;
| font-size: 10px;
| text-align: center;
| }
|
| .box-content-text-title-span,
| .box-content-text-content-span {
| font-weight: bold;
| }
| </style>
|
|