Commit 33d95e17 authored by liudong1993's avatar liudong1993

1

parent 1eace57d
......@@ -303,11 +303,15 @@
v-loading="loading">
<tr>
<th>月份</th>
<th>人数</th>
<th>汇总人数</th>
<th>团队人数</th>
<th>单项人数</th>
</tr>
<tr v-for="item in yearBonusDataList">
<td>{{item.TradeDate}}</td>
<td :style="item.GuestNum>=35?'color:red':''">{{item.GuestNum}}</td>
<td>{{item.TravelNum}}</td>
<td>{{item.VisaNum}}</td>
</tr>
<tr v-if="yearBonusDataList.length==0">
<td style="text-align:center" colspan="3">{{$t('system.content_noData')}}</td>
......
......@@ -472,11 +472,15 @@
<table style=" border: 1px solid black;border-collapse: collapse; text-align: center; width: 100%;">
<tr style="border: 1px solid black">
<th style="border: 1px solid black">月份</th>
<th style="border: 1px solid black">人数</th>
<th style="border: 1px solid black">汇总人数</th>
<th style="border: 1px solid black">团队人数</th>
<th style="border: 1px solid black">单项人数</th>
</tr>
<tr v-for="item in CommissionInfor.BonusPeriods" style="border: 1px solid black">
<td style="border: 1px solid black">{{item.TradeDate}}</td>
<td style="border: 1px solid black"><span :style="item.GuestNum>=35?'color:red':'color:black'">{{item.GuestNum}}</span></td>
<td style="border: 1px solid black">{{item.TravelNum}}</td>
<td style="border: 1px solid black">{{item.VisaNum}}</td>
</tr>
</table>
</div>
......
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