Commit 8347a610 authored by 罗超's avatar 罗超

1

parent e9b7d58f
......@@ -205,13 +205,11 @@
this.tab = 1
this.elDateType = "month"
this.elDatePlaceholder = "选择月"
this.date = ""
this.qMsg.Type = 1;
} else if (type == 2) {
this.tab = 2
this.elDateType = "year"
this.elDatePlaceholder = "选择年"
this.date = ""
this.qMsg.Type = 2;
}
this.research();
......@@ -389,6 +387,8 @@
background-color: #F2F4F7 !important;
color: #2961FE !important;
border: none !important;
font-size: 14px !important;
padding-right:15px !important;
}
::v-deep .el-input__prefix,
......
......@@ -400,11 +400,10 @@
height: 20px;
margin: 10px auto;
border-radius: 2px;
// overflow: hidden;
.progress-tag {
text-align: center;
font-size: 12px;
font-size: 0.62vw;
line-height: 20px;
color: #FFFFFF;
}
......@@ -425,7 +424,7 @@
border-radius: 6px;
.statistic-price {
font-size: 30px;
font-size: 1.56vw;
color: #404040;
font-weight: 700;
// text-align: center;
......@@ -433,16 +432,16 @@
.before {
font-weight: 300;
font-size: 20px;
font-size: 1vw;
}
.after {
font-size: 20px;
font-size: 1vw;
}
}
.statistic-name {
font-size: 14px;
font-size: 0.72vw;
color: #999999;
text-align: center;
}
......@@ -463,6 +462,8 @@
background-color: #F2F4F7 !important;
color: #2961FE !important;
border: none !important;
font-size: 14px !important;
padding-right:15px !important;
}
::v-deep .el-input__prefix,
......@@ -507,7 +508,7 @@
justify-content: center;
align-items: center;
color: #666666;
font-size: 12px;
font-size: 0.62vw;
font-family: PingFang SC;
border-radius: 7px;
line-height:12px;
......
......@@ -7,7 +7,8 @@
<div class="sell-title">市场/销售</div>
</div>
</div>
<VueApexCharts width="100%" height="105" :options="chartOptions" :series="series" ref="apex" v-if="sellBlock!==2">
<VueApexCharts width="100%" height="105" :options="chartOptions" :series="series" ref="apex"
v-if="sellBlock!==2">
</VueApexCharts>
</div>
<div class="bottom flex justify-between content-between">
......@@ -259,13 +260,16 @@
this.series[0].name = name;
this.series[0].data = []
this.PersionData.dayList.map(item => {
const obj = {
x: item.x,
y: item[field]
}
this.series[0].data.push(obj)
})
const obj = {
x: item.x,
y: item[field]
}
this.series[0].data.push(obj)
})
setTimeout(() => {
this.$refs.apex.updateSeries(this.series)
}, 100)
}
}
};
......
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