From 8c9d027e68d2407d8425f6db26b725efa213df90 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Wed, 30 Oct 2024 21:08:39 +0800
Subject: [PATCH] 首页
---
src/views/survey/components/box/fireSource.vue | 51 ++++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 42 insertions(+), 9 deletions(-)
diff --git a/src/views/survey/components/box/fireSource.vue b/src/views/survey/components/box/fireSource.vue
index fc313a4..fe4a4e3 100644
--- a/src/views/survey/components/box/fireSource.vue
+++ b/src/views/survey/components/box/fireSource.vue
@@ -9,7 +9,34 @@
* Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
-->
<script setup>
-import publicContent from './publicContent.vue'
+// import publicContent from './publicContent.vue'
+
+import { getDetail } from '../../../../api/indParkInfo'
+
+// import { ref, reactive } from 'vue'
+
+var parkInfo = reactive({})
+
+
+
+// 初始化
+onMounted(() => {
+ getData()
+
+})
+// 获取详情
+function getData() {
+ getDetail().then(res => {
+ parkInfo = res.data.data
+ console.log("************************", parkInfo)
+
+ }).catch(err => {
+ console.log(err)
+ })
+}
+
+
+
</script>
<template>
@@ -25,14 +52,15 @@
</div>
<div>
<div class="box-content-text">
- 吉水县地处江西省中部,赣江中游。地处东经114°38′至115°36′、北纬25°52′至27°33′之间,横跨赣江两岸,东南与永丰县接壤,北与峡江县相连,西南与吉安市、吉安县交界。县城文峰镇,西南距吉安市23公里,北距省会南昌196公里,东至永丰县城57公里,西北至峡江县城75公里,京九铁路、105国道、赣江水道均从县城经过,建设中的赣粤高速公路从县城西部穿越,其挂线跨越赣江,从县城北部进入老城区。江西吉水工业园区城西工业园位于吉水县老城区西南约2km处,吉水县城新区西部,东临赣江,北靠金滩镇,西达赣粤高速公路挂线,赣江大桥联系新区东部与西部。吉水县工业园规划为“一区三园”,分别为城西工业园、黄桥工业园、八都工业园。工业园总面积达854.25公顷(12813.7亩),其中,八都工业园17.19公顷、城西工业园735.68公顷、黄桥工业园101.38公顷。城西工业园分两期:城西工业园Ⅰ规模为218.47公顷,其四至范围为:东至赣江,西至白水路,南至黄金大道,北至金滩镇金滩村。城西工业园Ⅱ规模为517.21公顷,其四至范围为:东至金滩镇白鹭村-双元村,西至金滩镇古塘村-前进村,南至赣粤高速连接线,北至金滩镇前进村。江西吉水工业园区化工集中区位于江西吉水工业园区城西工业园Ⅱ内
+ {{ parkInfo.remark }}
</div>
</div>
</div>
<div class="container">
<div class="box-content-sj" v-for="(item, index) in 6" :key="index">
- <img src="../../../../../public/images/YX.png" alt="">
+ <!-- public\images\雨量站@2x.png -->
+ <img src="../../../../../public/images/雨量站@2x.png" alt="">
<div>
<div class="box-content-ss">
<div>
@@ -53,28 +81,25 @@
<div class="content-qy-info">
<div class="box-content-title">
- <img src="../../../../../public/images/YX.png" alt="">
+ <img src="../../../../../public/images/雨量站@2x.png" alt="">
<div class="box-content-title-text">
<span class="box-content-title-text-span">企业</span>
</div>
</div>
<div class="box-content-title">
- <img src="../../../../../public/images/YX.png" alt="">
+ <img src="../../../../../public/images/雨量站@2x.png" alt="">
<div class="box-content-title-text">
<span class="box-content-title-text-span">分区</span>
</div>
</div>
<div class="box-content-title">
- <img src="../../../../../public/images/YX.png" alt="">
+ <img src="../../../../../public/images/雨量站@2x.png" alt="">
<div class="box-content-title-text">
<span class="box-content-title-text-span">图层</span>
</div>
</div>
-
-
-
</div>
@@ -87,6 +112,7 @@
<style lang="scss" scoped>
.box-content-box {
color: #fff;
+ font-size: 15px;
}
.box-content {
@@ -107,6 +133,11 @@
width: 120px;
/* 宽度可以根据实际情况调整 */
height: 120px;
+}
+
+.box-content-title img {
+ width: 80px;
+ height: 80px;
}
.box-content-text {
@@ -149,6 +180,8 @@
.box-content-text-title,
.box-content-text-content {
margin-top: 5px;
+ font-size: 12px;
+ text-align: center;
}
.box-content-text-title-span,
--
Gitblit v1.9.3