Commit 0fb76b11 authored by qiaoyajun's avatar qiaoyajun

投诉统计

parent 2e1ecc69
...@@ -209,7 +209,7 @@ ...@@ -209,7 +209,7 @@
<li><span>出发日期:</span>{{PriceInfo.StartDate}}</li> <li><span>出发日期:</span>{{PriceInfo.StartDate}}</li>
<li><span>返回日期:</span>{{PriceInfo.BackDate}}</li> <li><span>返回日期:</span>{{PriceInfo.BackDate}}</li>
<li><span>订单号:</span><a style="text-decoration:underline;cursor:pointer;" <li><span>订单号:</span><a style="text-decoration:underline;cursor:pointer;"
@click="goEnrollTotal('报名统计','enrollTotal',PriceInfo.OrderId)">{{PriceInfo.OrderId}}>{{PriceInfo.OrderId}}</a> @click="goEnrollTotal('报名统计','enrollTotal',PriceInfo.OrderId)">{{PriceInfo.OrderId}}</a>
</li> </li>
<li><span>业务员:</span>{{PriceInfo.Salesman}}</li> <li><span>业务员:</span>{{PriceInfo.Salesman}}</li>
<li><span>线控:</span>{{PriceInfo.DriveByWire}}</li> <li><span>线控:</span>{{PriceInfo.DriveByWire}}</li>
......
...@@ -7,6 +7,20 @@ ...@@ -7,6 +7,20 @@
text-decoration: underline; text-decoration: underline;
color: #E95252; color: #E95252;
} }
.Complain_info{
margin:20px 0;
}
.Complain_item{
font-weight: 400;
padding: 10px;
height: 100%;
border: 1px solid #E6E6E6;
background-color: #FFFFFF;
color: #333333;
}
.complain_col{
height:60px;
}
</style> </style>
<template> <template>
...@@ -98,6 +112,25 @@ ...@@ -98,6 +112,25 @@
</li> </li>
</ul> </ul>
</div> </div>
<!-- 统计版块 -->
<div class="Complain_info">
<el-row :gutter="20">
<el-col :span="4" class="complain_col">
<div class="Complain_item">
<p>
<span>应赔总金额:{{complainStatistic.compensateTotalMoney}}</span>
</p>
</div>
</el-col>
<el-col :span="4" class="complain_col">
<div class="Complain_item">
<p>
<span>实赔总金额:{{complainStatistic.backTotalMoney}}</span>
</p>
</div>
</el-col>
</el-row>
</div>
<div class="commonContent" v-loading="queryCommonData.loading"> <div class="commonContent" v-loading="queryCommonData.loading">
<table class="singeRowTable" border="0" cellspacing="0" cellpadding="0"> <table class="singeRowTable" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -118,7 +151,8 @@ ...@@ -118,7 +151,8 @@
<tr v-for="item in queryCommonData.dataList"> <tr v-for="item in queryCommonData.dataList">
<td>{{item.ID}}</td> <td>{{item.ID}}</td>
<td style="text-decoration:underline;cursor:pointer;" <td style="text-decoration:underline;cursor:pointer;"
@click="goTeamBalancePayment('团队收支','TeamBalancePayment',item.TCID,item.OutBranchId)">{{item.TCNUM}}{{item.TCID}} @click="goTeamBalancePayment('团队收支','TeamBalancePayment',item.TCID,item.OutBranchId)">
{{item.TCNUM}}{{item.TCID}}
</td> </td>
<td style="text-decoration:underline;cursor:pointer;" <td style="text-decoration:underline;cursor:pointer;"
@click="goEnrollTotal('报名统计','enrollTotal',item.OrderID)">{{item.OrderID}} @click="goEnrollTotal('报名统计','enrollTotal',item.OrderID)">{{item.OrderID}}
...@@ -190,7 +224,8 @@ ...@@ -190,7 +224,8 @@
TCID: '', TCID: '',
pageIndex: 1, pageIndex: 1,
pageSize: 10 pageSize: 10
} },
complainStatistic: {}
} }
}, },
methods: { methods: {
...@@ -339,13 +374,23 @@ ...@@ -339,13 +374,23 @@
name: path, name: path,
query: {id: id, outBranchId: outBranchId, blank: 'y', tab: name} query: {id: id, outBranchId: outBranchId, blank: 'y', tab: name}
}) })
} },
//获取投诉统计
getComplainStatistic () {
let msg = {}
this.apipost('travel_post_GetComplainStatistic', msg, res => {
if (res.data.resultCode == 1) {
this.complainStatistic = res.data.data
}
})
},
}, },
mounted () { mounted () {
this.getLineList() this.getLineList()
this.getEnumeration() this.getEnumeration()
this.getEmployeeList() this.getEmployeeList()
this.getList() this.getList()
this.getComplainStatistic()
} }
} }
......
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