| | |
| | | <!-- |
| | | * @Author: shuishen 1109946754@qq.com |
| | | * @Date: 2023-03-13 14:54:26 |
| | | * @LastEditors: shuishen 1109946754@qq.com |
| | | * @LastEditTime: 2023-03-13 15:00:55 |
| | | * @FilePath: \forest-fire\src\views\statistics\components\box\dataContent.vue |
| | | * @Description: |
| | | * |
| | | * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. |
| | | --> |
| | | <script setup> |
| | | import publicContent from './publicContent.vue' |
| | | import { Picture } from '@element-plus/icons-vue' |
| | | |
| | | import { inject, Text } from 'vue' |
| | | const { VITE_APP_BASE } = import.meta.env |
| | | import { getDetail } from '@/api/indParkInfo' |
| | | |
| | | import { getAssetsFile } from 'utils/utils' |
| | | import { useRouterStore } from 'store/router' |
| | | import { useRouter, useRoute } from 'vue-router' |
| | | let router = useRouter() |
| | | const store = useRouterStore() |
| | | |
| | | let state = reactive({ |
| | | parkInfo: {} |
| | | }) |
| | | |
| | | // 企业信息统计数组 |
| | | let parkInfoList = reactive([ |
| | | { |
| | | id: 1, |
| | | name: 'plaArea', |
| | | title: '园区面积', |
| | | content: '1000', |
| | | unit: '公顷', |
| | | img: getAssetsFile('yq-mj.png', '/bgicon') |
| | | }, |
| | | { |
| | | id: 2, |
| | | name: 'recNum', |
| | | title: '救援人员数量', |
| | | content: '1000', |
| | | unit: '人', |
| | | img: getAssetsFile('yq-jy.png', '/bgicon') |
| | | |
| | | }, |
| | | // { |
| | | // id: 3, |
| | | // name: 'riskFirmNum', |
| | | // title: '风险企业数量', |
| | | // content: '1000', |
| | | // img: getAssetsFile('yq-fx.png', '/bgicon') |
| | | // }, |
| | | // { |
| | | // id: 4, |
| | | // name: 'proTarNum', |
| | | // title: '保护目标数量', |
| | | // content: '1000', |
| | | // img: getAssetsFile('yq-bh.png', '/bgicon') |
| | | // }, |
| | | { |
| | | id: 5, |
| | | name: 'spaceNum', |
| | | title: '应急空间数量', |
| | | content: '1000', |
| | | img: getAssetsFile('yq-yj.png', '/bgicon') |
| | | }, |
| | | { |
| | | id: 6, |
| | | name: 'firmNum', |
| | | title: '企业数量', |
| | | content: '1000', |
| | | img: getAssetsFile('yq-qy.png', '/bgicon') |
| | | } |
| | | ] |
| | | ) |
| | | |
| | | // 初始化 |
| | | onMounted(() => { |
| | | getData() |
| | | |
| | | }) |
| | | // 获取详情 |
| | | function getData () { |
| | | getDetail().then(res => { |
| | | state.parkInfo = res.data.data |
| | | parkInfoList.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="../../../../../public/images/YX.png" alt=""> |
| | | </div> |
| | | </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公顷,其四至范围为:东至金滩镇白鹭村-双元村,西至金滩镇古塘村-前进村,南至赣粤高速连接线,北至金滩镇前进村。江西吉水工业园区化工集中区位于江西吉水工业园区城西工业园Ⅱ内 |
| | | </div> |
| | | </div> |
| | | <div class="box-content-box"> |
| | | <div class="box-content"> |
| | | <div> |
| | | <div class="box-content-img"> |
| | | <!-- <img :src="state.parkInfo.imageUrls" alt=""> --> |
| | | <el-image style="width: 100px; height: 100px" :src="state.parkInfo.imageUrls" :zoom-rate="1.2" :max-scale="7" |
| | | :min-scale="0.2" :preview-src-list="[state.parkInfo.imageUrls]" :initial-index="4" fit="cover"> |
| | | <template #error> |
| | | <div class="image-slot"> |
| | | <el-icon> |
| | | <Picture /> |
| | | </el-icon> |
| | | </div> |
| | | </template> |
| | | </el-image> |
| | | <span>{{ state.parkInfo.remark }}</span> |
| | | </div> |
| | | |
| | | <div class="container"> |
| | | <div class="box-content-sj" v-for="(item, index) in 6" :key="index"> |
| | | <img src="../../../../../public/images/YX.png" alt=""> |
| | | <div> |
| | | <div class="box-content-ss"> |
| | | <div> |
| | | <div class="box-content-text-title"> |
| | | <span class="box-content-text-title-span">2999</span> |
| | | </div> |
| | | </div> |
| | | <div> |
| | | <div class="box-content-text-content"> |
| | | <span class="box-content-text-content-span">企业园区</span> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | |
| | | <div class="content-qy-info"> |
| | | <div class="box-content-title"> |
| | | <img src="../../../../../public/images/YX.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=""> |
| | | <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=""> |
| | | <div class="box-content-title-text"> |
| | | <span class="box-content-title-text-span">图层</span> |
| | | </div> |
| | | </div> |
| | | |
| | | |
| | | |
| | | |
| | | </div> |
| | | |
| | | |
| | | </div> |
| | | </div> |
| | | <!-- </template> |
| | | </public-content> --> |
| | | |
| | | <div class="container"> |
| | | <div class="box-content-sj" v-for="item in parkInfoList" :key="item.id"> |
| | | <img :src="item.img" alt=""> |
| | | <div class="r"> |
| | | <div class="box-content-text-title"> |
| | | {{ item.content }} |
| | | <text v-if="item.unit">({{ item.unit }})</text> |
| | | </div> |
| | | |
| | | <div class="box-content-text-content"> |
| | | {{ item.title }} |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- <el-button @click="goSubLayout">跳转a</el-button> --> |
| | | </div> |
| | | </template> |
| | | |
| | | <style lang="scss" scoped> |
| | | .box-content-box { |
| | | color: #fff; |
| | | padding: 10px; |
| | | color: #fff; |
| | | font-size: 15px; |
| | | } |
| | | |
| | | .box-content { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | |
| | | display: flex; |
| | | justify-content: space-between; |
| | | } |
| | | |
| | | .content-qy-info { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | text-align: center; |
| | | margin-top: 15px; |
| | | .box-content-img { |
| | | |
| | | height: 280px; |
| | | line-height: 28px; |
| | | // 隐藏滚动条 |
| | | scrollbar-width: none; |
| | | overflow-x: hidden; |
| | | overflow-y: auto; |
| | | } |
| | | |
| | | .box-content-img img { |
| | | margin: 5px; |
| | | width: 120px; |
| | | /* 宽度可以根据实际情况调整 */ |
| | | height: 120px; |
| | | .box-content-img span { |
| | | // 行距 |
| | | line-height: 25px; |
| | | // 字体间隙 |
| | | letter-spacing: 1px; |
| | | } |
| | | |
| | | .box-content-img .el-image { |
| | | float: left; |
| | | margin: 5px; |
| | | margin-right: 15px; |
| | | /* 宽度可以根据实际情况调整 */ |
| | | width: 130px; |
| | | height: 130px; |
| | | } |
| | | |
| | | |
| | | .box-content-text { |
| | | padding-left: 5px; |
| | | // width: 60%; |
| | | /* 宽度可以根据实际情况调整 */ |
| | | height: 130px; |
| | | /* 高度可以根据实际情况调整 */ |
| | | overflow: hidden; |
| | | padding-left: 5px; |
| | | height: 360px; |
| | | overflow: scroll; |
| | | // 隐藏滚动条 |
| | | // scrollbar-width: none; |
| | | |
| | | } |
| | | |
| | | .container { |
| | | display: flex; |
| | | flex-wrap: wrap; |
| | | gap: 5px; |
| | | margin-top: 10px; |
| | | display: flex; |
| | | justify-content: space-around; |
| | | 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; |
| | | /* 每个盒子占据大约31%的宽度,留出一些空间用于间距 */ |
| | | min-width: 40%; |
| | | /* 最小宽度,防止在非常小的屏幕上变得太窄 */ |
| | | box-sizing: border-box; |
| | | // border: 1px solid #ccc; |
| | | display: flex; |
| | | // 设置高度 |
| | | align-items: center; |
| | | justify-content: space-between; |
| | | |
| | | img { |
| | | width: 36px; |
| | | height: 36px; |
| | | vertical-align: middle; |
| | | } |
| | | |
| | | .r { |
| | | margin-left: 1px; |
| | | flex: 1; |
| | | display: flex; |
| | | // 设置高度 |
| | | align-items: center; |
| | | } |
| | | flex-direction: column; |
| | | justify-content: space-around; |
| | | |
| | | .box-content-sj img { |
| | | max-width: 60%; |
| | | height: 60px; |
| | | } |
| | | .box-content-text-title, |
| | | .box-content-text-content { |
| | | margin-top: 5px; |
| | | font-size: 13px; |
| | | text-align: center; |
| | | } |
| | | |
| | | .box-content-ss { |
| | | margin: 0px 0px 0px 10px; |
| | | } |
| | | .box-content-text-title { |
| | | font-size: 16px; |
| | | font-weight: bold; |
| | | } |
| | | |
| | | .box-content-text-title, |
| | | .box-content-text-content { |
| | | margin-top: 5px; |
| | | } |
| | | |
| | | .box-content-text-title-span, |
| | | .box-content-text-content-span { |
| | | font-weight: bold; |
| | | .box-content-text-title text { |
| | | margin-top: 5px; |
| | | font-size: 10px; |
| | | text-align: center; |
| | | } |
| | | } |
| | | } |
| | | </style> |