首页left1

This commit is contained in:
熊丽君
2021-12-08 14:13:08 +08:00
parent 6895a51323
commit cc2569e366
6 changed files with 494 additions and 371 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<container3> <container3>
<img class="img" src="./conter.png" style="width: 100%;height:100%"> <img class="img" src="./conter2.jpg" style="width: 100%;height:100%">
<rocketTit class="tit">今日动态</rocketTit> <rocketTit class="tit">今日动态</rocketTit>
<div class="data"> <div class="data">
<div class="data-item"> <div class="data-item">

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,104 @@
<template>
<div class="container2">
<div class="tit">
<rocketTit>{{title}}</rocketTit>
<div class="datePicker">
<slot name="datePicker"></slot>
</div>
</div>
<div class="content">
<div class="snap">
<slot name="snap"></slot>
</div>
<slot />
</div>
</div>
</template>
<script>
import rocketTit from "../../../components/rocketTit/index.vue";
export default {
name: 'Container2',
components: {
rocketTit,
},
props: {
title: {
type: String,
default: '',
},
selected: {
type: Boolean,
default: false,
},
},
data () {
return {
}
},
}
</script>
<style lang="scss" scoped>
.container2 {
display: flex;
flex-direction: column;
width: 538px;
height: 288px;
background-image: url(./bg.png);
background-size: cover;
color: #ffffff;
font-size: 16px;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
.tit {
padding: 16px 16px 16px 24px;
position: relative;
.datePicker {
position: absolute;
right: 16px;
top: 12px;
::v-deep .el-date-editor {
border-radius: 0;
box-shadow: none !important;
border: 1px solid rgba(255, 255, 255, 0.2);
vertical-align: middle;
color: #fff;
background-color: transparent;
.el-range-input,
.el-range-separator {
color: #fff;
}
.el-range-editor.is-active {
border-color: #fff !important;
}
input {
background-color: transparent;
}
}
}
}
.content {
flex: 1;
padding: 2px;
box-sizing: border-box;
overflow: hidden;
position: relative;
.snap {
position: absolute;
top: 20px;
left: 25px;
font-weight: 300;
}
}
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 KiB

View File

@ -1,349 +1,350 @@
<template> <template>
<container2 title="经营责任书完成概况"> <div>
<div class="wrap"> <container2 title="经营责任书完成概况">
<el-row class="content1"> <div class="wrap">
<el-col :span="12"> <el-row class="content1">
<div id="left1" ref="left1" class="chart1"></div> <el-col :span="24">
</el-col> <div id="left1" ref="left1" class="chart1"></div>
<el-col :span="12"> </el-col>
<div class="record"> <!-- <el-col :span="12">
<div>0进展指标 <span class="num">2</span></div> <div class="record">
</div> <div>0进展指标 <span class="num">2</span></div>
</el-col> </div>
</el-row> </el-col> -->
<el-row class="content2"> </el-row>
<el-row class="titWrap"> </div>
<el-col :span="12" class="tit">责任书各类完成情况百分比</el-col> </container2>
<el-col :span="12" style="text-align:right"> <container2 title="收入概况" style="margin-top: 10px">
<bigScreenTabs v-model="index" :titleArr="['部门', '类型']"></bigScreenTabs> <div class="wrap">
</el-col> <el-row class="content2">
</el-row> <el-col :span="24">
<div class="tabContent" v-show="index == 0"> <div id="left2" ref="left2" class="chart2"></div>
<div id="left2"></div> </el-col>
</div> </el-row>
<div class="tabContent" v-show="index == 1"> </div>
<div id="left3"></div> </container2>
</div> </div>
</el-row>
</div>
</container2>
</template> </template>
<script> <script>
import rocketTit from "../components/rocketTit/index.vue"; import rocketTit from '../components/rocketTit/index.vue'
import container2 from "../components/container2/index.vue"; import container2 from './components/container2/index.vue'
import bigScreenTabs from "../components/bigScreenTabs/index.vue"; import bigScreenTabs from '../components/bigScreenTabs/index.vue'
// import {Liquid} from '@antv/g2plot'; // import {Liquid} from '@antv/g2plot';
// import resize from '../../dashboard/mixins/resize' // import resize from '../../dashboard/mixins/resize'
export default { export default {
// mixins: [resize], // mixins: [resize],
name: 'left1', name: 'left1',
components: { components: {
rocketTit, rocketTit,
container2, container2,
bigScreenTabs, bigScreenTabs,
}, },
data () { data() {
return { return {
index: 0, index: 0,
data: [ data: [
{ {
"year": "2021-01", year: '2021-01',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门一" category: '部门一',
}, },
{ {
"year": "2021-02", year: '2021-02',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门一" category: '部门一',
}, },
{ {
"year": "2021-03", year: '2021-03',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门一" category: '部门一',
}, },
{ {
"year": "2021-04", year: '2021-04',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门一" category: '部门一',
}, },
{ {
"year": "2021-05", year: '2021-05',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门一" category: '部门一',
}, },
{ {
"year": "2021-06", year: '2021-06',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门一" category: '部门一',
}, },
{ {
"year": "2021-01", year: '2021-01',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门二" category: '部门二',
}, },
{ {
"year": "2021-02", year: '2021-02',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门二" category: '部门二',
}, },
{ {
"year": "2021-03", year: '2021-03',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门二" category: '部门二',
}, },
{ {
"year": "2021-04", year: '2021-04',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门二" category: '部门二',
}, },
{ {
"year": "2021-05", year: '2021-05',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门二" category: '部门二',
}, },
{ {
"year": "2021-06", year: '2021-06',
"value": ~~(Math.random() * 100), value: ~~(Math.random() * 100),
"category": "部门二" category: '部门二',
}, },
] ],
} }
}, },
mounted () { mounted() {
this.$nextTick(() => { this.$nextTick(() => {
this.initChart() this.initChart()
this.initLine() this.initLine()
}) })
}, },
beforeDestroy () { beforeDestroy() {},
methods: {
}, initChart() {
methods: { const { Liquid, Pie } = G2Plot
initChart () { const data = [
const { Liquid } = G2Plot; { type: '类别一', value: 235 },
const liquidPlot = new Liquid(this.$refs.left1, { { type: '类别二', value: 565 },
percent: 0.25, { type: '类别三', value: 927 },
statistic: { { type: '类别四', value: 574 },
content: { { type: '类别五', value: 214 },
style: { { type: '类别六', value: 214 },
color: 'rgb(255,255,255)', { type: '类别七', value: 214 },
fontSize: 18, { type: '类别八', value: 214 },
}, { type: '类别九', value: 214 },
customHtml: (container, view, { percent }) => { { type: '类别十', value: 214 },
const text = `总体<br/>完成情况 ${(percent * 100).toFixed(0)}%`; ]
return `<div>${text}</div>`; const calcAverageValue = (data, type) => {
}, const items = data.filter(d => d.type === type)
} return items.length ? items.reduce((a, b) => a + b.value, 0) / items.length : '-'
}, }
outline: { const liquidPlot = new Pie(this.$refs.left1, {
border: 4, data: data,
style: { angleField: 'value',
stroke: 'l(0) 0:rgba(89, 184, 244, 1) 0.5:rgba(106, 232, 216, 1) 1:rgba(88, 151, 240, 1)' colorField: 'type',
} legend: {
}, itemHeight: 13,
wave: { pageNavigator: {
length: 128, marker: {
}, style: {
}); // 非激活,不可点击态时的填充色设置
console.log(liquidPlot.render()) inactiveFill: '#fff',
// liquidPlot.render(); inactiveOpacity: 0.45,
}, // 默认填充色设置
initLine () { fill: '#fff',
const { Line } = G2Plot; opacity: 0.8,
let arr = this.data; size: 12,
const line = new Line('left2', { },
data: arr, },
xField: 'year', text: {
yField: 'value', style: {
padding: 'auto', fill: '#fff',
seriesField: 'category', fontSize: 8,
legend: { },
position: 'top', },
title: { },
style: { offsetX: -30,
color: '#ffffff' itemName: {
} style: {
}, fill: '#fff',
itemName: { },
style: { },
fill: '#ffffff' itemValue: {
} formatter: (text, item) => {
} return calcAverageValue(data, item.value)
}, },
// 配置折线趋势填充 style: (item, index) => {
area: { return {
style: { fill: '#fff',
fillOpacity: 0.15, }
}, },
}, },
xAxis: { },
type: 'time', // legend: {
label: { // position: 'right-top',
// 数值格式化为千分位 // offsetX: 8,
style: { // title: {
stroke: 'rgba(145, 213, 254, 0.1)', // text: '产品类别 (平均销售量)',
fill: '#ffffff', // spacing: 8,
} // },
}, // itemName: {
}, // style: (item, index) => {
// return {
yAxis: { // fill: calcAverageValue(data, item.value) > 10000 ? 'red' : 'green',
label: { // };
// 数值格式化为千分位 // },
formatter: (v) => `${v}`.replace(/\d{1,3}(?=(\d{3})+$)/g, (s) => `${s},`), // },
style: { // itemValue: {
stroke: 'rgba(145, 213, 254, 0.1)', // formatter: (text, item) => {
fill: '#ffffff', // return calcAverageValue(data, item.value);
} // },
}, // style: (item, index) => {
grid: { // return {
line: { // fill: calcAverageValue(data, item.value) > 10000 ? 'red' : 'green',
style: { // };
stroke: 'rgba(145, 213, 254, 0.1)', // },
fill: '#ffffff', // },
lineWidth: 2, // },
lineDash: [4, 5], color: ['#4e7cde', '#4eba97', '#506186', '#d2a31d', '#c65a49'],
strokeOpacity: 0, radius: 0.9,
cursor: 'pointer' label: {
} type: 'inner',
} offset: '-30%',
}, content: ({ percent }) => `${(percent * 100).toFixed(0)}%`,
line: { style: {
style: { fontSize: 14,
stroke: 'rgba(145, 213, 254, 0.1)', textAlign: 'center',
fill: '#ffffff', },
lineWidth: 2, },
} interactions: [{ type: 'element-active' }],
} pieStyle: {
}, lineWidth: 0,
}); },
const line1 = new Line('left3', { })
data: arr, // const liquidPlot = new Liquid(this.$refs.left1, {
xField: 'year', // percent: 0.25,
yField: 'value', // statistic: {
padding: 'auto', // content: {
seriesField: 'category', // style: {
legend: { // color: 'rgb(255,255,255)',
position: 'top', // fontSize: 18,
title: { // },
style: { // customHtml: (container, view, { percent }) => {
color: '#ffffff' // const text = `总体<br/>完成情况 ${(percent * 100).toFixed(0)}%`;
} // return `<div>${text}</div>`;
} // },
}, // }
// 配置折线趋势填充 // },
area: { // outline: {
style: { // border: 4,
fillOpacity: 0.15, // style: {
}, // stroke: 'l(0) 0:rgba(89, 184, 244, 1) 0.5:rgba(106, 232, 216, 1) 1:rgba(88, 151, 240, 1)'
}, // }
xAxis: { // },
type: 'time', // wave: {
}, // length: 128,
yAxis: { // },
label: { // });
// 数值格式化为千分位 console.log(liquidPlot.render())
formatter: (v) => `${v}`.replace(/\d{1,3}(?=(\d{3})+$)/g, (s) => `${s},`), // liquidPlot.render();
}, },
}, initLine() {
}); const { Line } = G2Plot
let arr = this.data
line.render(); const line = new Line(this.$refs.left2, {
line1.render(); //
} })
} line.render()
},
},
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.wrap { .wrap {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
width: 100%; width: 100%;
} }
.content1 { .content1 {
height: 200px; // height: 200px;
.chart1 { height: 100%;
margin: 0 auto;
width: 192px;
height: 192px;
background: transparent;
}
.record { .chart1 {
display: flex; margin: 0 auto;
align-items: center; // width: 192px;
height: 192px; width: 100%;
padding-left: 30px; height: 192px;
> div { background: transparent;
flex: 1; }
position: relative;
::before { .record {
content: ""; display: flex;
display: inline-block; align-items: center;
width: 9px; height: 192px;
height: 9px; padding-left: 30px;
background: #ffffff; > div {
border-radius: 50%; flex: 1;
position: absolute; position: relative;
left: -18px; ::before {
top: 18px; content: '';
} display: inline-block;
} width: 9px;
} height: 9px;
background: #ffffff;
border-radius: 50%;
position: absolute;
left: -18px;
top: 18px;
}
}
}
} }
.num { .num {
font-size: 30px; font-size: 30px;
font-family: Roboto-BlackItalic, Roboto; font-family: Roboto-BlackItalic, Roboto;
font-weight: normal; font-weight: normal;
color: #91d5fe; color: #91d5fe;
vertical-align: sub; vertical-align: sub;
// margin-right: 3px; // margin-right: 3px;
} }
.content2 { .content2 {
padding: 20px; padding: 20px;
flex: 1; flex: 1;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.titWrap { .titWrap {
height: 30px; height: 30px;
} }
.tabContent { .tabContent {
flex: 1; flex: 1;
} }
.tabContent > div { .tabContent > div {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.tit { .tit {
font-size: 16px; font-size: 16px;
font-family: PingFangSC-Semibold, PingFang SC; font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600; font-weight: 600;
color: #ffffff; color: #ffffff;
line-height: 22px; line-height: 22px;
position: relative; position: relative;
padding-left: 15px; padding-left: 15px;
} }
.tit::after { .tit::after {
content: ""; content: '';
display: block; display: block;
position: absolute; position: absolute;
top: 3px; top: 3px;
left: 0px; left: 0px;
width: 4px; width: 4px;
height: 16px; height: 16px;
background: #00ffff; background: #00ffff;
} }
} }
</style> </style>

View File

@ -1,6 +1,29 @@
<template> <template>
<div> <div>
<rocketTit style="margin-bottom: 9px">生产动态</rocketTit> <container2 title="经营责任书完成概况">
<div class="wrap">
<el-row class="content1">
<el-col :span="24">
<div id="left1" ref="left1" class="chart1"></div>
</el-col>
<!-- <el-col :span="12">
<div class="record">
<div>0进展指标 <span class="num">2</span></div>
</div>
</el-col> -->
</el-row>
</div>
</container2>
<container2 title="收入概况" style="margin-top: 10px">
<div class="wrap">
<el-row class="content2">
<el-col :span="24">
<div id="left2" ref="left2" class="chart2"></div>
</el-col>
</el-row>
</div>
</container2>
<!-- <rocketTit style="margin-bottom: 9px">生产动态</rocketTit>
<container4> <container4>
<el-row style="height: 100%"> <el-row style="height: 100%">
<el-col :span="12" style="height: 100%"> <el-col :span="12" style="height: 100%">
@ -20,65 +43,60 @@
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</container4> </container4> -->
</div> </div>
</template> </template>
<script> <script>
import rocketTit from "../components/rocketTit/index.vue"; import rocketTit from '../components/rocketTit/index.vue'
import container4 from "../components/container4/index.vue"; import container4 from '../components/container4/index.vue'
import resize from '../../dashboard/mixins/resize' import resize from '../../dashboard/mixins/resize'
export default { export default {
mixins: [resize], mixins: [resize],
name: 'right1', name: 'right1',
components: { components: {
rocketTit, rocketTit,
container4, container4,
}, },
data () { data() {
return {} return {}
}, },
mounted () { mounted() {},
beforeDestroy() {},
}, methods: {},
beforeDestroy () {
},
methods: {
}
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.right1_bg { .right1_bg {
width: 211px; width: 211px;
height: 132px; height: 132px;
background-size: cover; background-size: cover;
text-align: center; text-align: center;
padding: 10px 0 10px 0; padding: 10px 0 10px 0;
margin: 20px auto 0 auto; margin: 20px auto 0 auto;
font-size: 14px; font-size: 14px;
.num { .num {
font-size: 30px; font-size: 30px;
font-family: Roboto-Black, Roboto; font-family: Roboto-Black, Roboto;
font-weight: 900; font-weight: 900;
line-height: 35px; line-height: 35px;
margin-right: 3px; margin-right: 3px;
vertical-align: middle; vertical-align: middle;
} }
} }
.right1_bg1 { .right1_bg1 {
background-image: url(./right1-1.png); background-image: url(./right1-1.png);
.num { .num {
color: #f6d97e; color: #f6d97e;
} }
} }
.right1_bg2 { .right1_bg2 {
background-image: url(./right1-2.png); background-image: url(./right1-2.png);
.num { .num {
color: #1098ff; color: #1098ff;
} }
} }
</style> </style>