You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
77 lines
2.0 KiB
<template>
|
|
<div class="cls-outter" v-loading="load">
|
|
<v-label-div-light v-if="getIsLight" :title="time">
|
|
<v-btn @click="moreInfo">更多信息</v-btn>
|
|
</v-label-div-light>
|
|
<v-label-div v-else :title="time">
|
|
<v-btn @click="moreInfo">更多信息</v-btn>
|
|
</v-label-div>
|
|
<div class="cls-inner" v-if="getIsLight" style="background: #FFF">
|
|
<v-echarts :opt="opt2"></v-echarts>
|
|
</div>
|
|
<div class="cls-inner" v-else>
|
|
<v-echarts :opt="opt"></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {getCheZhuSpecCount} from "@/api/SaleRank"
|
|
import createOpt from "./opt"
|
|
import createOptLight from "./optLight"
|
|
export default {
|
|
name: 'carLevelSale',
|
|
data() {
|
|
return {
|
|
form: {
|
|
token: ''
|
|
},
|
|
load: false,
|
|
opt: {},
|
|
opt2: {},
|
|
time: '各级别车型销量'
|
|
}
|
|
},
|
|
created() {
|
|
this.form.token = this.getToken;
|
|
this.getData()
|
|
},
|
|
methods: {
|
|
getData() {
|
|
this.load = true;
|
|
let obj = Object.assign({},this.form);
|
|
getCheZhuSpecCount(obj).then(res => {
|
|
let data = res.data;
|
|
this.time = "各级别车型销量(" + data.Time + ')';
|
|
let dx = [];
|
|
let ds = [];
|
|
data.Data.forEach(ele => {
|
|
dx.push(ele.key);
|
|
ds.push(ele.value)
|
|
})
|
|
this.opt = createOpt(dx,ds);
|
|
this.opt2 = createOptLight(dx, ds)
|
|
this.load = false
|
|
})
|
|
},
|
|
moreInfo() {
|
|
this.$router.push({
|
|
path: "/saleRank/aLevel",
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.cls-outter {
|
|
width: 1552px;
|
|
height: 460px;
|
|
border: 2px solid #0f2a4d;
|
|
margin-top: 16px;
|
|
.cls-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style> |