Commit 7bfd23fb authored by 吴春's avatar 吴春

领队报账提交

parent 0308eb18
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
</td> </td>
<td> <td>
<div v-for="subItem in item.ScenicStatisticsList"> <div v-for="subItem in item.ScenicStatisticsList">
{{getTotal(subItem.ReimburseList.ReimburseDetailsList)}} {{subItem.TotalPrice}} {{subItem.CurrencyStr}}
</div> </div>
</td> </td>
<td> <td>
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
<span v-if='index==dataList.BusList.length-1'>送机</span> <span v-if='index==dataList.BusList.length-1'>送机</span>
</td> </td>
<td> <td>
{{item.TotalPrice}} {{item.TotalPrice}} {{subItem.CurrencyStr}}
</td> </td>
<td> <td>
{{item.Remarks}} {{item.Remarks}}
...@@ -140,12 +140,12 @@ ...@@ -140,12 +140,12 @@
<td v-if="index==0" :rowspan="dataList.DiningList.length">餐饮</td> <td v-if="index==0" :rowspan="dataList.DiningList.length">餐饮</td>
<td> <td>
<div class="itemName" v-for="subItem in item.DiningSummaryList"> <div class="itemName" v-for="subItem in item.DiningSummaryList">
{{subItem.DiningName}} {{subItem.NewDiningName}}
</div> </div>
</td> </td>
<td> <td>
<div v-for="subItem in item.DiningSummaryList"> <div v-for="subItem in item.DiningSummaryList">
{{getTotal(subItem.ReimburseList.ReimburseDetailsList)}} {{subItem.TotalPrice}} {{subItem.CurrencyStr}}
</div> </div>
</td> </td>
<td> <td>
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
<td width="30%"> <td width="30%">
<div class="itemName" >{{item.NewHotelName}}</div> <div class="itemName" >{{item.NewHotelName}}</div>
</td> </td>
<td>{{item.TotalPrice}}</td> <td>{{item.TotalPrice}} {{item.CurrencyStr}}</td>
<td>{{item.Remarks}}</td> <td>{{item.Remarks}}</td>
</tr> </tr>
</template> </template>
...@@ -202,7 +202,7 @@ export default { ...@@ -202,7 +202,7 @@ export default {
this.apipost('dmcstatistics_post_GetNewLeaderPayStatics', this.msg, res => { this.apipost('dmcstatistics_post_GetNewLeaderPayStatics', this.msg, res => {
this.loading = false this.loading = false
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
console.log(res,'ressssssss'); console.log(res.data.data,'ressssssss');
this.dataList = res.data.data; this.dataList = res.data.data;
this.dataList.HotelList.forEach(x=>{ this.dataList.HotelList.forEach(x=>{
this.totalHotelPrice+=x.TotalPrice this.totalHotelPrice+=x.TotalPrice
......
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