Commit e9b7d58f authored by 罗超's avatar 罗超

1

parent e6673f14
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
</div> </div>
</div> </div>
<div class="statistic-block flex wrap justify-center content-center"> <div class="statistic-block flex wrap justify-center content-center">
<div class="statistic-price full-width flex justify-center items-baseline"> <div class="statistic-price full-width flex no-wrap justify-center items-baseline">
<span class="before">¥</span> <span class="before">¥</span>
{{formatInt(commissionData.WaitCommission)||0}} {{formatInt(commissionData.WaitCommission)||0}}
<span class="after">{{formatDecimal(commissionData.WaitCommission)}}</span> <span class="after">{{formatDecimal(commissionData.WaitCommission)}}</span>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<div class="sell-title">市场/销售</div> <div class="sell-title">市场/销售</div>
</div> </div>
</div> </div>
<VueApexCharts width="100%" height="105" :options="chartOptions" :series="series"> <VueApexCharts width="100%" height="105" :options="chartOptions" :series="series" ref="apex" v-if="sellBlock!==2">
</VueApexCharts> </VueApexCharts>
</div> </div>
<div class="bottom flex justify-between content-between"> <div class="bottom flex justify-between content-between">
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
</div> </div>
</div> </div>
<div class="sell-block" :class="{'active-sell':sellBlock==3}" style="background-color:#E8FFF3" <div class="sell-block" :class="{'active-sell':sellBlock==3}" style="background-color:#E8FFF3"
@click="ckeckSell(3)"> @click="ckeckSell(3,'到访','VisitCount')">
<div class="flex no-wrap justify-between items-center"> <div class="flex no-wrap justify-between items-center">
<img src="../../assets/images/newindex/sell3.png" style="width:26px;height:26px"> <img src="../../assets/images/newindex/sell3.png" style="width:26px;height:26px">
<q-btn size="sm" dense flat round icon="more_horiz"> <q-btn size="sm" dense flat round icon="more_horiz">
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
</div> </div>
</div> </div>
<div class="sell-block" :class="{'active-sell':sellBlock==4}" style="background-color:#F2FAFF;" <div class="sell-block" :class="{'active-sell':sellBlock==4}" style="background-color:#F2FAFF;"
@click="ckeckSell(4)"> @click="ckeckSell(4,'拜访','appointmentCount')">
<div class="flex no-wrap justify-between items-center"> <div class="flex no-wrap justify-between items-center">
<img src="../../assets/images/newindex/sell4.png" style="width:26px;height:26px"> <img src="../../assets/images/newindex/sell4.png" style="width:26px;height:26px">
<q-btn size="sm" dense flat round icon="more_horiz"> <q-btn size="sm" dense flat round icon="more_horiz">
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
</div> </div>
</div> </div>
<div class="sell-block" :class="{'active-sell':sellBlock==5}" style="background-color:#FFFAF5" <div class="sell-block" :class="{'active-sell':sellBlock==5}" style="background-color:#FFFAF5"
@click="ckeckSell(5)"> @click="ckeckSell(5,'新同行','customerCount')">
<div class="flex no-wrap justify-between items-center"> <div class="flex no-wrap justify-between items-center">
<img src="../../assets/images/newindex/sell5.png" style="width:26px;height:26px"> <img src="../../assets/images/newindex/sell5.png" style="width:26px;height:26px">
<q-btn size="sm" dense flat round icon="more_horiz"> <q-btn size="sm" dense flat round icon="more_horiz">
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
</div> </div>
</div> </div>
<div class="sell-block" :class="{'active-sell':sellBlock==6}" style="background-color:#FEF4FE" <div class="sell-block" :class="{'active-sell':sellBlock==6}" style="background-color:#FEF4FE"
@click="ckeckSell(6)"> @click="ckeckSell(6,'试听','trialLessonCount')">
<div class="flex no-wrap justify-between items-center"> <div class="flex no-wrap justify-between items-center">
<img src="../../assets/images/newindex/sell6.png" style="width:26px;height:26px"> <img src="../../assets/images/newindex/sell6.png" style="width:26px;height:26px">
<q-btn size="sm" dense flat round icon="more_horiz"> <q-btn size="sm" dense flat round icon="more_horiz">
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
data() { data() {
return { return {
series: [{ series: [{
name: "新名单", name: "",
data: [] data: []
}], }],
chartOptions: { chartOptions: {
...@@ -248,26 +248,28 @@ ...@@ -248,26 +248,28 @@
getPersionNumData() { getPersionNumData() {
queryPersonnelStatic({}).then(res => { queryPersonnelStatic({}).then(res => {
if (res.Code == 1) { if (res.Code == 1) {
console.log(251,res.Data)
this.PersionData = res.Data; this.PersionData = res.Data;
this.ckeckSell(1,'新名单','AddCount') this.ckeckSell(1, '新名单', 'AddCount')
} }
}); });
}, },
ckeckSell(n,name,field) { ckeckSell(n, name, field) {
this.sellBlock = n; this.sellBlock = n;
this.series[0].name=name; if (n == 2) return
this.series[0].data=[] this.series[0].name = name;
this.PersionData.dayList.map(item=>{ this.series[0].data = []
const obj={ this.PersionData.dayList.map(item => {
x:item.x, const obj = {
y:item[field] x: item.x,
} y: item[field]
this.series[0].data.push(obj) }
}) this.series[0].data.push(obj)
})
this.$refs.apex.updateSeries(this.series)
} }
} }
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.sell { .sell {
...@@ -340,4 +342,5 @@ ...@@ -340,4 +342,5 @@
.active-sell { .active-sell {
box-shadow: 1px 3px 49px 0px rgba(0, 158, 247, 0.28); box-shadow: 1px 3px 49px 0px rgba(0, 158, 247, 0.28);
} }
</style>
\ No newline at end of file </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