md
This commit is contained in:
parent
3d50275fd6
commit
a26fc5b4f5
@ -220,7 +220,7 @@
|
||||
|
||||
|
||||
|
||||
<CardWithHeader header="订单量统计" height="400px">
|
||||
<CardWithHeader header="订单趋势" height="400px">
|
||||
<template v-slot:body>
|
||||
<LineOrderChart :chart-data="orderStateData" />
|
||||
</template>
|
||||
@ -235,17 +235,18 @@
|
||||
<el-row>
|
||||
<el-col :span="12" >
|
||||
<div class="count">
|
||||
<span @click="goRouter('/websites')">0</span>
|
||||
<span @click="goRouter('/websites')">{{ omsBillFeeState.waitPayMoney}}</span>
|
||||
</div>
|
||||
<div class="title" style="color:red">未付款</div>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<div class="count">
|
||||
<span @click="goRouter('/websites')">0</span>
|
||||
<span @click="goRouter('/websites')">{{ omsBillFeeState.totalRecedMoney}}</span>
|
||||
</div>
|
||||
<div class="title">已付款</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</div>
|
||||
|
||||
</template>
|
||||
@ -301,7 +302,7 @@ import CardWithHeader from '@/components/CardWithHeader/index.vue';
|
||||
import RaddarChart from './common/RaddarChart.vue';
|
||||
import LineOrderChart from './common/LineOrderChart.vue';
|
||||
import QuickLink from './common/QuickLink.vue';
|
||||
import { getOmsOrderStatInfo,getLatestMonthCreateOrderMapList } from "@/api/oms/emisWaybill";
|
||||
import { getOmsOrderStatInfo,getLatestMonthCreateOrderMapList,getOmsBillFeeStatInfo } from "@/api/oms/emisWaybill";
|
||||
|
||||
|
||||
import { mapGetters } from 'vuex'
|
||||
@ -327,6 +328,11 @@ export default {
|
||||
transCount:0,
|
||||
waitGotCount:0
|
||||
},
|
||||
omsBillFeeState:{
|
||||
totalRecMoney:0,
|
||||
totalRecedMoney:0,
|
||||
waitPayMoney:0
|
||||
},
|
||||
orderStateData:{
|
||||
xAxisData:[],
|
||||
orderStateData:[]
|
||||
@ -373,9 +379,14 @@ export default {
|
||||
this.orderStateData.orderStateData=[...yData];
|
||||
console.log("====>this.orderStateData===>",this.orderStateData);
|
||||
|
||||
// this.orderStateList = response.data;
|
||||
});
|
||||
|
||||
getOmsBillFeeStatInfo().then(response => {
|
||||
console.log("====>getOmsBillFeeStatInfo===>",response);
|
||||
this.omsBillFeeState = response.data;
|
||||
});
|
||||
|
||||
|
||||
|
||||
},
|
||||
moveEvent(){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user