Commit b910bbdc authored by 潘自豪's avatar 潘自豪

营业额数据

parent f137b7d4
<template>
<div class="turnover-detail">
<div class="card-board">
<contrast-card v-for="(data,key) in currentData.head" style="height: 100%;width: 20%;" :class="{'selectCard': key}"
<contrast-card v-for="(data,key) in currentData.head" style="height: 100%;width: 20%;"
:class="{'selectCard': key}"
@click.native="selectLegend(key)">
<title-content-mark style="color: #369afa;float: left;width: 40%;font-size: 18px"
:title-style="{'font-weight': 'bold'}" :title="key" :content="data.amount" isBold/>
......@@ -118,7 +119,7 @@ export default {
currentBtn: "day",
currentLegend: '汽运(元)',
currentCard: '营业额',
chartOption:{
chartOption: {
legend: {
textStyle: {
color: 'white'
......@@ -202,7 +203,7 @@ export default {
},
watch: {},
methods: {
back(){
back() {
this.$router.push({path: '/'});
},
resizeChart() {
......@@ -253,10 +254,28 @@ export default {
case '铁运营业额':
name = "铁运(元)";
break;
case '汽运成本':
name = "汽运(元)";
break;
case '水运成本':
name = "水运(元)";
break;
case '铁运成本':
name = "铁运(元)";
break;
case '汽运毛利':
name = "汽运(元)";
break;
case '水运毛利':
name = "水运(元)";
break;
case '铁运毛利':
name = "铁运(元)";
break;
default:
break;
}
console.log(name)
if (name) {
this.chart.dispatchAction({
type: 'legendInverseSelect'
......@@ -271,7 +290,7 @@ export default {
this.chartOption.series[3].data = [];
}
this.currentLegend = name;
this.currentCard = data.title;
this.currentCard = title;
this.chart.setOption(this.chartOption);
},
......@@ -345,11 +364,12 @@ input[type="button"] {
background-color: #1234a1;
}
input[type="button"]:hover{
input[type="button"]:hover {
color: #1234a1 !important;
background-color: #00c8d6 !important;
}
.selectedBtn{
.selectedBtn {
color: #1234a1 !important;
background-color: #00c8d6 !important;
}
......@@ -358,7 +378,8 @@ input[type="button"]:hover{
color: #00c8d6;
background-color: #1234a1;
}
.selectCard{
.selectCard {
background-color: var(--card-background-select-color) !important;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment