|
@@ -2,7 +2,31 @@
|
|
<BusinessMainCom title="企业一张图">
|
|
<BusinessMainCom title="企业一张图">
|
|
<div class="enterprise">
|
|
<div class="enterprise">
|
|
<div class="__gis-business-main_title">数量统计</div>
|
|
<div class="__gis-business-main_title">数量统计</div>
|
|
- <FocusContentCom class="one">1</FocusContentCom>
|
|
|
|
|
|
+ <FocusContentCom class="one" v-loading="loading.statistic">
|
|
|
|
+ <div class="one-top">
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ <div class="one-bottom">
|
|
|
|
+ <div class="one-bottom-item">
|
|
|
|
+ <div class="chart">
|
|
|
|
+ <PieSimpleChartCom :num="statistic.qy.lgszyjkscsb" :total="statistic.qy.total" color="#00FFFF"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text">零关税自用<br/>进口生产设备</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="one-bottom-item">
|
|
|
|
+ <div class="chart">
|
|
|
|
+ <PieSimpleChartCom :num="statistic.qy.jgzzmgs" :total="statistic.qy.total" color="#FFCC8F"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text">加工增值免关税</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="one-bottom-item">
|
|
|
|
+ <div class="chart">
|
|
|
|
+ <PieSimpleChartCom :num="statistic.qy.lgsjkyfl" :total="statistic.qy.total" color="#EB90FF"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text">零关税进口<br/>原辅料</div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </FocusContentCom>
|
|
<FocusContentCom class="two">2</FocusContentCom>
|
|
<FocusContentCom class="two">2</FocusContentCom>
|
|
<div class="__gis-business-main_title">企业列表</div>
|
|
<div class="__gis-business-main_title">企业列表</div>
|
|
<div class="form">
|
|
<div class="form">
|
|
@@ -70,12 +94,14 @@ import {useRouter, useRoute} from 'vue-router'
|
|
import {ElMessage, ElMessageBox} from "element-plus";
|
|
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'
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
name: '',
|
|
name: '',
|
|
components: {
|
|
components: {
|
|
BusinessMainCom,
|
|
BusinessMainCom,
|
|
FocusContentCom,
|
|
FocusContentCom,
|
|
|
|
+ PieSimpleChartCom
|
|
},
|
|
},
|
|
props: {},
|
|
props: {},
|
|
setup(props, {emit}) {
|
|
setup(props, {emit}) {
|
|
@@ -96,6 +122,18 @@ export default defineComponent({
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
total: 0
|
|
total: 0
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+ statistic: {
|
|
|
|
+ qy: {
|
|
|
|
+ total: 0,
|
|
|
|
+ lgszyjkscsb: 0,
|
|
|
|
+ jgzzmgs: 0,
|
|
|
|
+ lgsjkyfl: 0
|
|
|
|
+ },
|
|
|
|
+ warning: 0
|
|
|
|
+ },
|
|
|
|
+ loading: {
|
|
|
|
+ statistic: false
|
|
}
|
|
}
|
|
})
|
|
})
|
|
const onSearch = () => {
|
|
const onSearch = () => {
|
|
@@ -124,9 +162,25 @@ export default defineComponent({
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ const initStatistic = () => {
|
|
|
|
+ state.loading.statistic = true
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ state.statistic = {
|
|
|
|
+ qy: {
|
|
|
|
+ total: 125,
|
|
|
|
+ lgszyjkscsb: 95,
|
|
|
|
+ jgzzmgs: 21,
|
|
|
|
+ lgsjkyfl: 9
|
|
|
|
+ },
|
|
|
|
+ warning: 1200
|
|
|
|
+ }
|
|
|
|
+ state.loading.statistic = false
|
|
|
|
+ })
|
|
|
|
+ }
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
state.enterprise.form = JSON.parse(JSON.stringify(state.enterprise.tempForm))
|
|
state.enterprise.form = JSON.parse(JSON.stringify(state.enterprise.tempForm))
|
|
handleSearch()
|
|
handleSearch()
|
|
|
|
+ initStatistic()
|
|
})
|
|
})
|
|
return {
|
|
return {
|
|
...toRefs(state),
|
|
...toRefs(state),
|
|
@@ -148,6 +202,35 @@ export default defineComponent({
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
.one {
|
|
.one {
|
|
height: 238px;
|
|
height: 238px;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ .one-top {}
|
|
|
|
+ .one-bottom {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ .one-bottom-item {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ align-items: center;
|
|
|
|
+ .chart {
|
|
|
|
+ width: 100px;
|
|
|
|
+ height: 100px;
|
|
|
|
+ }
|
|
|
|
+ .text {
|
|
|
|
+ flex: 1;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #434343;
|
|
|
|
+ line-height: 14px;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.two {
|
|
.two {
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|