|
@@ -4,7 +4,8 @@
|
|
<div class="__gis-business-main_title">数量统计</div>
|
|
<div class="__gis-business-main_title">数量统计</div>
|
|
<FocusContentCom class="one" v-loading="loading.statistic">
|
|
<FocusContentCom class="one" v-loading="loading.statistic">
|
|
<div class="one-top">
|
|
<div class="one-top">
|
|
-
|
|
|
|
|
|
+ <img src="@/assets/images/gis-business/enterprise_icon1.png" alt=""/>
|
|
|
|
+ <StatisticTitleCom title="企业总数" :num="statistic.qy.total" unit="家"/>
|
|
</div>
|
|
</div>
|
|
<div class="one-bottom">
|
|
<div class="one-bottom">
|
|
<div class="one-bottom-item">
|
|
<div class="one-bottom-item">
|
|
@@ -27,7 +28,12 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</FocusContentCom>
|
|
</FocusContentCom>
|
|
- <FocusContentCom class="two">2</FocusContentCom>
|
|
|
|
|
|
+ <FocusContentCom class="two">
|
|
|
|
+ <div class="two-main">
|
|
|
|
+ <img src="@/assets/images/gis-business/enterprise_icon2.png" alt=""/>
|
|
|
|
+ <StatisticTitleCom title="预警总数" :num="statistic.warning" unit="条"/>
|
|
|
|
+ </div>
|
|
|
|
+ </FocusContentCom>
|
|
<div class="__gis-business-main_title">企业列表</div>
|
|
<div class="__gis-business-main_title">企业列表</div>
|
|
<div class="form">
|
|
<div class="form">
|
|
<CusFormColumn
|
|
<CusFormColumn
|
|
@@ -58,8 +64,18 @@
|
|
<div class="table">
|
|
<div class="table">
|
|
<div class="table-card">
|
|
<div class="table-card">
|
|
<template v-for="(item, index) in enterprise.table.data">
|
|
<template v-for="(item, index) in enterprise.table.data">
|
|
- <div class="table-card-item">
|
|
|
|
- {{(enterprise.table.pageNum - 1) * enterprise.table.pageSize + index + 1}}.{{item.name}}
|
|
|
|
|
|
+ <div class="table-card-item __hover" :class="{active: index === 0}">
|
|
|
|
+ <img src="@/assets/images/gis-business/enterprise_list-icon1.png" alt=""/>
|
|
|
|
+ <div class="table-card-item-right">
|
|
|
|
+ <div class="table-card-item-right-top">
|
|
|
|
+ <CusEllipsis :value="`${(enterprise.table.pageNum - 1) * enterprise.table.pageSize + index + 1}.${item.name}`"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="table-card-item-right-bottom">
|
|
|
|
+ <img src="@/assets/images/gis-business/enterprise_list-icon2.png" alt=""/>
|
|
|
|
+ {{item.type}}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
@@ -95,13 +111,15 @@ import {ElMessage, ElMessageBox} from "element-plus";
|
|
import BusinessMainCom from '../common/business-main.vue'
|
|
import BusinessMainCom from '../common/business-main.vue'
|
|
import FocusContentCom from '../common/focus-content.vue'
|
|
import FocusContentCom from '../common/focus-content.vue'
|
|
import PieSimpleChartCom from '../common/pie-simple-chart.vue'
|
|
import PieSimpleChartCom from '../common/pie-simple-chart.vue'
|
|
|
|
+import StatisticTitleCom from '../common/statistic-title.vue'
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
name: '',
|
|
name: '',
|
|
components: {
|
|
components: {
|
|
BusinessMainCom,
|
|
BusinessMainCom,
|
|
FocusContentCom,
|
|
FocusContentCom,
|
|
- PieSimpleChartCom
|
|
|
|
|
|
+ PieSimpleChartCom,
|
|
|
|
+ StatisticTitleCom
|
|
},
|
|
},
|
|
props: {},
|
|
props: {},
|
|
setup(props, {emit}) {
|
|
setup(props, {emit}) {
|
|
@@ -204,10 +222,18 @@ export default defineComponent({
|
|
height: 238px;
|
|
height: 238px;
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
- .one-top {}
|
|
|
|
|
|
+ .one-top {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 12px 22px 20px 23px;
|
|
|
|
+ >img {
|
|
|
|
+ margin-right: 16px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
.one-bottom {
|
|
.one-bottom {
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
|
|
+ padding: 0 12px;
|
|
.one-bottom-item {
|
|
.one-bottom-item {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
@@ -217,6 +243,7 @@ export default defineComponent({
|
|
height: 100px;
|
|
height: 100px;
|
|
}
|
|
}
|
|
.text {
|
|
.text {
|
|
|
|
+ margin-top: 8px;
|
|
flex: 1;
|
|
flex: 1;
|
|
text-align: center;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
@@ -229,12 +256,21 @@ export default defineComponent({
|
|
justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.two {
|
|
.two {
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|
|
height: 100px;
|
|
height: 100px;
|
|
|
|
+ .two-main {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 12px 22px 20px 23px;
|
|
|
|
+ >img {
|
|
|
|
+ margin-right: 16px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.form {
|
|
.form {
|
|
:deep(.el-form-item) {
|
|
:deep(.el-form-item) {
|
|
@@ -260,12 +296,43 @@ export default defineComponent({
|
|
display: grid;
|
|
display: grid;
|
|
row-gap: 10px;
|
|
row-gap: 10px;
|
|
.table-card-item {
|
|
.table-card-item {
|
|
|
|
+ overflow: hidden;
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 62px;
|
|
height: 62px;
|
|
border: 1px solid #D6D6D6;
|
|
border: 1px solid #D6D6D6;
|
|
border-radius: 2px;
|
|
border-radius: 2px;
|
|
- &:hover {
|
|
|
|
- background-color: rgba(16,140,243,0.1);
|
|
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 11px 8px;
|
|
|
|
+ &.active {
|
|
|
|
+ background: rgba(16,140,243,0.1);
|
|
|
|
+ border: 1px solid #1270DA;
|
|
|
|
+ }
|
|
|
|
+ .table-card-item-right {
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ flex: 1;
|
|
|
|
+ margin-left: 6px;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ .table-card-item-right-top {
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #434343;
|
|
|
|
+ }
|
|
|
|
+ .table-card-item-right-bottom {
|
|
|
|
+ margin-top: 7px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #FF8217;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ >img {
|
|
|
|
+ margin-right: 6px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|