Commit 666ef752 authored by liudong1993's avatar liudong1993

1

parent 806e9a57
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
} }
.guidPerformance .leftTop { .guidPerformance .leftTop {
width: 1150px; width: 1280px;
height: 360px; height: 360px;
border: 1px solid #E6E6E6; border: 1px solid #E6E6E6;
background-color: #fff; background-color: #fff;
...@@ -327,7 +327,7 @@ ...@@ -327,7 +327,7 @@
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
<span> <span v-if="msg.Type != 14">
<em>{{$t('system.query_workType')}}</em> <em>{{$t('system.query_workType')}}</em>
<el-select v-model="msg.QLeaderType" :placeholder="$t('system.ph_choice')"> <el-select v-model="msg.QLeaderType" :placeholder="$t('system.ph_choice')">
<el-option :label="$t('system.ph_buxian')" :value='0'></el-option> <el-option :label="$t('system.ph_buxian')" :value='0'></el-option>
...@@ -343,7 +343,7 @@ ...@@ -343,7 +343,7 @@
:placeholder="$t('ground.xuanzenian')"> :placeholder="$t('ground.xuanzenian')">
</el-date-picker> </el-date-picker>
</span> </span>
<span v-else-if="msg.Type==2"> <span v-else-if="msg.Type==2 || msg.Type == 14">
<em>{{$t("ground.yuefen")}}</em> <em>{{$t("ground.yuefen")}}</em>
<el-date-picker v-model="msg.MonthStr2" type="month" value-format="yyyy-MM" <el-date-picker v-model="msg.MonthStr2" type="month" value-format="yyyy-MM"
:placeholder="$t('ground.xuanzeyue')"> :placeholder="$t('ground.xuanzeyue')">
...@@ -383,7 +383,7 @@ ...@@ -383,7 +383,7 @@
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
<div class="ChampionsLeague clearfix"> <div class="ChampionsLeague clearfix">
<table class="singeRowTable" style="margin-top:5px;"> <table v-if="msg.Type != 14" class="singeRowTable" style="margin-top:5px;">
<tr> <tr>
<th width="100">{{$t('hotel.hotel_SerialNumber')}}</th> <th width="100">{{$t('hotel.hotel_SerialNumber')}}</th>
<th width="100">{{$t('system.query_name')}}</th> <th width="100">{{$t('system.query_name')}}</th>
...@@ -419,6 +419,44 @@ ...@@ -419,6 +419,44 @@
</td> </td>
</tr> </tr>
</table> </table>
<table v-else class="singeRowTable" style="margin-top:5px;">
<tr>
<th width="100">{{$t('hotel.hotel_SerialNumber')}}</th>
<th width="100">地接团号</th>
<th width="100">购物店</th>
<th width="100">总购物金额</th>
<th width="100">返佣金额</th>
<th width="100">人数</th>
<th width="100">人均</th>
<th width="100">导游</th>
</tr>
<tr v-for="(item,index) in DataList" :key="index">
<td>
<div style="width:45px;text-align:left;margin:auto;">
{{index+1}}
<template v-if="index+1==1">
<img style="width:25px;" src="../../assets/img/chamPion.png" alt=""/>
</template>
<template v-if="index+1==2">
<img style="width:25px;" src="../../assets/img/runnerUp.png" alt=""/>
</template>
<template v-if="index+1==3">
<img style="width:25px;" src="../../assets/img/bronze.png" alt=""/>
</template>
<template v-else>
<div style="width:25px;"></div>
</template>
</div>
</td>
<td><span>{{item.TCNUM}}</span></td>
<td><span>{{item.ShopName}}</span></td>
<td><span>{{item.TotalMoney}}</span></td>
<td><span>{{item.BackTotalMoney}}</span></td>
<td><span>{{item.EnterNum}}</span></td>
<td><span>{{item.AvgCommission}}</span></td>
<td><span>{{item.GuideName}}</span></td>
</tr>
</table>
</div> </div>
</div> </div>
...@@ -512,6 +550,11 @@ ...@@ -512,6 +550,11 @@
Type: "13", Type: "13",
titleName: "意见调查表缺少张数", titleName: "意见调查表缺少张数",
}, },
{
Name: "团队回佣排名",
Type: "14",
titleName: "团队回佣排名",
},
], ],
}; };
}, },
...@@ -533,10 +576,10 @@ ...@@ -533,10 +576,10 @@
QMonthStr: this.msg.MonthStr, QMonthStr: this.msg.MonthStr,
ShoppingID: this.msg.ShoppingID ShoppingID: this.msg.ShoppingID
}; };
if (msg.Type == 2) { if (this.msg.Type == 2 || this.msg.Type == 14) {
msg.QMonthStr = this.msg.MonthStr2; msg.QMonthStr = this.msg.MonthStr2;
} }
if (msg.Type != 2 && msg.Type != 3 && msg.Type != 6) { if (this.msg.Type != 2 && this.msg.Type != 3 && this.msg.Type != 6 && this.msg.Type != 14) {
if (this.msg.Month != -1) { if (this.msg.Month != -1) {
msg.QMonthStr = this.msg.Year + "-" + this.msg.Month; msg.QMonthStr = this.msg.Year + "-" + this.msg.Month;
} else { } else {
......
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