Commit a78a6053 authored by 黄奎's avatar 黄奎
parents 79833eb5 1ec844ce
...@@ -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>
......
<style> <style>
.CM_detail { .CM_detail {
color: #3980C8; color: #3980C8;
cursor: pointer;
} }
.CM_detail:hover { .CM_detail:hover {
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_item span{
font-size:14px;
}
.Complain_item div{
margin-top:7px;
}
.Complain_item div i{
font-size:12px;
}
.complain_col{
height:60px;
}
.Complain_green{
color:#1BC594;
}
.Com_yingfu{
font-size:16px;
color:#1BC594;
font-weight:bold;
}
.Com_zong{
font-size:16px;
color: #E95252;
font-weight:bold;
}
</style> </style>
<template> <template>
...@@ -98,6 +135,27 @@ ...@@ -98,6 +135,27 @@
</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">
<div>
<i class="iconfont icon-qian Complain_green"></i>
<span>应赔总金额:<span class="Com_yingfu">{{complainStatistic.compensateTotalMoney}}</span></span>
</div>
</div>
</el-col>
<el-col :span="4" class="complain_col">
<div class="Complain_item">
<div>
<i class="iconfont icon-qian Complain_green"></i>
<span>实赔总金额:<span class="Com_zong">{{complainStatistic.backTotalMoney}}</span></span>
</div>
</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 +176,8 @@ ...@@ -118,7 +176,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 +249,8 @@ ...@@ -190,7 +249,8 @@
TCID: '', TCID: '',
pageIndex: 1, pageIndex: 1,
pageSize: 10 pageSize: 10
} },
complainStatistic: {}
} }
}, },
methods: { methods: {
...@@ -339,13 +399,23 @@ ...@@ -339,13 +399,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