提交 9ee0d069 authored 作者: ww1xhqc's avatar ww1xhqc

fix(创新示范): 数据修改

上级 50c91ce7
...@@ -52,7 +52,7 @@ export default defineComponent({ ...@@ -52,7 +52,7 @@ export default defineComponent({
data() { data() {
return { return {
industryCardItems: [ industryCardItems: [
{ label: "国防科技工业产值总量", value: "202" }, { label: "国防科技工业产值总量", value: "1113.4" },
{ {
label: "国防科技工业产值总量增长率", label: "国防科技工业产值总量增长率",
value: "19", value: "19",
......
<template> <template>
<MapTitle text="承担军品情况" /> <MapTitle text="承担军品情况" />
<el-row> <el-row>
<el-col :span="8"> <el-col :span="8">
...@@ -22,8 +22,8 @@ import { Aim } from "@element-plus/icons"; ...@@ -22,8 +22,8 @@ import { Aim } from "@element-plus/icons";
// 国家增长率 // 国家增长率
const seriesCountryData = [ const seriesCountryData = [
{ {
value: [820, 832, 901], value: [107.32, 157.51, 172.11],
rate: [60, 70, 75,], rate: ["", 42.17, 21.19,],
}, },
]; ];
const xAxisCountry = ["2018", "2019", "2020","2021","2022",]; const xAxisCountry = ["2018", "2019", "2020","2021","2022",];
...@@ -35,11 +35,11 @@ const xAxisCity = [ ...@@ -35,11 +35,11 @@ const xAxisCity = [
"杭州", "杭州",
"宁波", "宁波",
"温州", "温州",
"胡洲", "湖州",
"嘉兴", "嘉兴",
"绍兴", "绍兴",
"金华", "金华",
"州", "州",
"舟山", "舟山",
"台州", "台州",
"丽水", "丽水",
...@@ -94,7 +94,7 @@ export default defineComponent({ ...@@ -94,7 +94,7 @@ export default defineComponent({
type: "line", type: "line",
stack: "Total", stack: "Total",
itemStyle: { itemStyle: {
color: "#4198ff", color: "#fac858",
}, },
yAxisIndex: 1, yAxisIndex: 1,
emphasis: { emphasis: {
...@@ -146,6 +146,8 @@ export default defineComponent({ ...@@ -146,6 +146,8 @@ export default defineComponent({
{ {
type: "value", type: "value",
name: "收入(亿元)", name: "收入(亿元)",
min: 0,
max: 200,
}, },
{ {
type: "value", type: "value",
......
...@@ -4,12 +4,12 @@ ...@@ -4,12 +4,12 @@
<div class="card-items"> <div class="card-items">
<div class="item"> <div class="item">
<span>入伍总人数</span> <span>入伍总人数</span>
<div class="value-des"><span>500</span></div> <div class="value-des"><span>1470</span></div>
</div> </div>
<div class="item"> <div class="item">
<span>入伍总比列</span> <span>入伍总比列</span>
<div class="value-des"><span>5%</span></div> <div class="value-des"><span>0.5%</span></div>
</div> </div>
</div> </div>
...@@ -24,18 +24,18 @@ import MapTitle from "@/components/mapTitle/index.vue"; ...@@ -24,18 +24,18 @@ import MapTitle from "@/components/mapTitle/index.vue";
import * as echarts from "echarts"; import * as echarts from "echarts";
const seriesData = { const seriesData = {
value: [30, 50, 80, 60, 89, 58, 75, 85, 62, 28, 25], value: [595, 173, 128, 74, 84, 47, 142, 39, 49, 100, 39],
rate: [0.1, 0.5, 0.2, 0.3, 0.8, 0.6, 0.85, 0.12, 0.6, 0.3, 0.6], rate: [0.5, 0.4, 0.5, 1, 0.5, 0.2, 0.6, 0.9, 0.8, 1, 0.6],
}; };
const xAxisCity = [ const xAxisCity = [
"杭州", "杭州",
"宁波", "宁波",
"温州", "温州",
"胡洲", "湖州",
"嘉兴", "嘉兴",
"绍兴", "绍兴",
"金华", "金华",
"州", "州",
"舟山", "舟山",
"台州", "台州",
"丽水", "丽水",
...@@ -110,7 +110,7 @@ export default defineComponent({ ...@@ -110,7 +110,7 @@ export default defineComponent({
html += `<div class="person-echart "> html += `<div class="person-echart ">
<span class=" title color_1">${params[0].data.label}</span> <span class=" title color_1">${params[0].data.label}</span>
<br /> <br />
<span class="text text-color_1">${params[0].data.value}</span>亿元 <span class="text text-color_1">${params[0].data.value}</span>
</div> </div>
<div class="person-echart"> <div class="person-echart">
<span class=" title color_2">${params[1].data.label}</span> <span class=" title color_2">${params[1].data.label}</span>
...@@ -133,6 +133,8 @@ export default defineComponent({ ...@@ -133,6 +133,8 @@ export default defineComponent({
{ {
type: "value", type: "value",
name: "入伍人数", name: "入伍人数",
min: 0,
max: 700,
}, },
{ {
type: "value", type: "value",
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<el-col :span="12"> <el-col :span="12">
<IncomExtendLine <IncomExtendLine
echartsId="incomExtend" echartsId="incomExtend"
echartsTitle="全省军民协同创新平台情况" echartsTitle="规模以上企业参与军民融合产业活动情况"
echartsDesText="主营业务收入趋势" echartsDesText="主营业务收入趋势"
:cardItems="extendCardItems" :cardItems="extendCardItems"
/> />
...@@ -59,14 +59,14 @@ export default defineComponent({ ...@@ -59,14 +59,14 @@ export default defineComponent({
{ label: "国防科技工业产值总量", value: "1113.4" }, { label: "国防科技工业产值总量", value: "1113.4" },
{ {
label: "国防科技工业产值总量增长率", label: "国防科技工业产值总量增长率",
value: "19", value: "22.8",
}, },
], ],
extendCardItems: [ extendCardItems: [
{ label: "参与军民融合产业互动的规模以上企业主营收入", value: "3545.5" }, { label: "参与军民融合产业互动的规模以上企业主营业务收入", value: "3545.5" },
{ {
label: "参与军民融合产业互动的规模以上企业主营收入增长率", label: "参与军民融合产业互动的规模以上企业主营业务收入增长率",
value: "19", value: "31.5",
}, },
], ],
}; };
......
<template> <template>
<MapTitle text="军民融合产业主营业务收入" /> <MapTitle text="军民融合产业各领域主营业务收入" />
<el-row> <el-row>
<el-col :span="10"> <el-col :span="10">
...@@ -37,9 +37,9 @@ import * as echarts from "echarts"; ...@@ -37,9 +37,9 @@ import * as echarts from "echarts";
import { Aim } from "@element-plus/icons"; import { Aim } from "@element-plus/icons";
const PIE_LIST = [ const PIE_LIST = [
{ label: "数字军工(网络、人工智能)领域", value: 932.66 }, { label: "数字军工(网络、人工智能)领域", value: 932.66 },
{ label: "高端装备领域", value:383.17 }, { label: "高端装备领域", value:383.17 },
{ label: "核电(新能源领域)", value: 311.27 }, { label: "核电(新能源领域)", value: 311.27 },
{ label: "生物安全领域", value: 267.96 }, { label: "生物安全领域", value: 267.96 },
{ label: "航空航天领域", value: 269.18 }, { label: "航空航天领域", value: 269.18 },
{ label: "船舶与海洋装备领域", value: 84.22 }, { label: "船舶与海洋装备领域", value: 84.22 },
......
...@@ -39,11 +39,11 @@ const xAxisValue = [ ...@@ -39,11 +39,11 @@ const xAxisValue = [
"杭州", "杭州",
"宁波", "宁波",
"温州", "温州",
"胡洲", "湖州",
"嘉兴", "嘉兴",
"绍兴", "绍兴",
"金华", "金华",
"州", "州",
"舟山", "舟山",
"台州", "台州",
"丽水", "丽水",
......
...@@ -58,7 +58,7 @@ export default defineComponent({ ...@@ -58,7 +58,7 @@ export default defineComponent({
data() { data() {
return { return {
list: [ list: [
{ label: "领跑产品", value: "20", unit: "个" }, { label: "领跑产品(技术)", value: "20", unit: "个" },
{ label: "军地协同创新平台", value: "20", unit: "个" }, { label: "军地协同创新平台", value: "20", unit: "个" },
{ label: "新兴领域研发经费", value: "20", unit: "亿元" }, { label: "新兴领域研发经费", value: "20", unit: "亿元" },
], ],
......
...@@ -21,14 +21,14 @@ ...@@ -21,14 +21,14 @@
<div class="item-row"> <div class="item-row">
<span class="font-size14 color-666">增长率</span> <span class="font-size14 color-666">增长率</span>
<el-col class="font-size20 color-pramiry">30% </el-col> <el-col class="font-size20 color-pramiry">31.5% </el-col>
</div> </div>
<div class="item-row"> <div class="item-row">
<span class="font-size14 color-666">主营业务收入</span> <span class="font-size14 color-666">主营业务收入</span>
<el-col class="font-size20 color-pramiry" <el-col class="font-size20 color-pramiry"
>30 <span class="font-size12 color-999">亿元</span> >3545.5 <span class="font-size12 color-999">亿元</span>
</el-col> </el-col>
</div> </div>
</el-row> </el-row>
...@@ -45,14 +45,14 @@ ...@@ -45,14 +45,14 @@
<div class="item-row"> <div class="item-row">
<span class="font-size14 color-666">增长率</span> <span class="font-size14 color-666">增长率</span>
<el-col class="font-size20 color-pramiry">30% </el-col> <el-col class="font-size20 color-pramiry">22.8% </el-col>
</div> </div>
<div class="item-row"> <div class="item-row">
<span class="font-size14 color-666">产值</span> <span class="font-size14 color-666">产值</span>
<el-col class="font-size20 color-pramiry" <el-col class="font-size20 color-pramiry"
>30 <span class="font-size12 color-999">亿元</span> >1113.4 <span class="font-size12 color-999">亿元</span>
</el-col> </el-col>
</div> </div>
</el-row> </el-row>
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
<el-row class="item-bg"> <el-row class="item-bg">
<el-col class="padding0-8 font-size14 color-666" <el-col class="padding0-8 font-size14 color-666"
>民口单位军品收入</el-col >民口单位军品收入</el-col
> >
<el-col class="padding0-8"> <el-col class="padding0-8">
<span class="font-size20 color-pramiry">30</span> <span class="font-size20 color-pramiry">30</span>
......
...@@ -10,8 +10,8 @@ import { defineComponent } from "vue"; ...@@ -10,8 +10,8 @@ import { defineComponent } from "vue";
import MapTitle from "@/components/mapTitle/index.vue"; import MapTitle from "@/components/mapTitle/index.vue";
import * as echarts from "echarts"; import * as echarts from "echarts";
enum Echart_color_Enum { enum Echart_color_Enum {
level_1 = "#4198ff", level_1 = "#fac858",
level_2 = "#4f5d81", level_2 = "#4198ff",
} }
const seriesData = [ const seriesData = [
...@@ -19,15 +19,15 @@ const seriesData = [ ...@@ -19,15 +19,15 @@ const seriesData = [
name: "国防科工军品收入", name: "国防科工军品收入",
type: "level_1", type: "level_1",
echartType: "bar", echartType: "bar",
growthRate: [80, 85, 95, 65, 85, 70, 85], growthRate: ["", 42.17, 21.19],
barValue: [1820, 1332, 2045, 1852], barValue: [107.32, 157.51, 172.11],
}, },
{ {
name: "民口单位军品收入", name: "民口单位军品收入",
type: "level_2", type: "level_2",
echartType: "bar", echartType: "bar",
barValue: [1232, 1264, 2661, 1616], barValue: [71.93, 117.94, 139.15],
growthRate: [50, 60, 70, 80, 80, 60, 85], growthRate: ["",60,80],
}, },
]; ];
...@@ -98,7 +98,7 @@ export default defineComponent({ ...@@ -98,7 +98,7 @@ export default defineComponent({
html += `<div class="tooltip-income"> html += `<div class="tooltip-income">
<span class="title">${item.seriesName}</span> <span class="title">${item.seriesName}</span>
<div class="row-item"> <div class="row-item">
<div>金额 <p><span class="${data.class}">${data.value}</span>元</p></div> <div>金额 <p><span class="${data.class}">${data.value}</span>亿元</p></div>
<div>增长率 <p><span class="${data.class}">${data.rate}%</span></p></div> <div>增长率 <p><span class="${data.class}">${data.rate}%</span></p></div>
</div> </div>
</div>`; </div>`;
...@@ -119,9 +119,9 @@ export default defineComponent({ ...@@ -119,9 +119,9 @@ export default defineComponent({
yAxis: [ yAxis: [
{ {
type: "value", type: "value",
name: "元", name: "亿元",
min: 1000, min: 0,
max: 5000, max: 200,
}, },
{ {
type: "value", type: "value",
......
<template> <template>
<MapTitle text='各市"千百十"项目投资金额及进度情况(截至第二季度)' /> <MapTitle text='各市"千百十"项目投资金额及进度情况' />
<div id="InvestmentProgress" class="investment-progress"></div> <div id="InvestmentProgress" class="investment-progress"></div>
</template> </template>
<script lang="ts"> <script lang="ts">
...@@ -24,11 +24,11 @@ const xAxisValue = [ ...@@ -24,11 +24,11 @@ const xAxisValue = [
"杭州", "杭州",
"宁波", "宁波",
"温州", "温州",
"胡洲", "湖州",
"嘉兴", "嘉兴",
"绍兴", "绍兴",
"金华", "金华",
"州", "州",
"舟山", "舟山",
"台州", "台州",
"丽水", "丽水",
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论