Commit f1028279 authored by 黄奎's avatar 黄奎

Merge branch 'B2C' of http://gitlab.oytour.com/zk123/jz_travel into B2C

parents b59be1e7 2a632bd7
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
</view> </view>
<view v-if="params.type==3" class="headeDatasCenterBox din" stripe> <view v-if="params.type==3" class="headeDatasCenterBox din" stripe>
<template v-for="item in datas.DiningSummaryList[datas.diningIndex].DiningPriceList"> <template v-for="item in datas.DiningSummaryList[datas.diningIndex].DiningPriceList">
<view class="headeDatasCenter row"> <view class="headeDatasCenter row" v-if="item.UsePeopleNum>0">
<view>{{ getPeopleName(item.PeopleType) }}</view> <view>{{ getPeopleName(item.PeopleType) }}</view>
<view>人数:{{ item.UsePeopleNum }}</view> <view>人数:{{ item.UsePeopleNum }}</view>
<view class="flex1">单价:¥{{ item.PeoplePrice }}</view> <view class="flex1">单价:¥{{ item.PeoplePrice }}</view>
...@@ -206,7 +206,7 @@ ...@@ -206,7 +206,7 @@
</view> </view>
<view v-if="params.type==4" class="headeDatasCenterBox" stripe> <view v-if="params.type==4" class="headeDatasCenterBox" stripe>
<template v-for="item in datas.ScenicStatisticsList[datas.scenicIndex].TicketPriceList"> <template v-for="item in datas.ScenicStatisticsList[datas.scenicIndex].TicketPriceList">
<view class="headeDatasCenter row"> <view class="headeDatasCenter row" v-if="item.PeopleNum>0">
<view>{{ getPeopleName(item.PeopleType) }}</view> <view>{{ getPeopleName(item.PeopleType) }}</view>
<view>人数:{{ item.PeopleNum }}</view> <view>人数:{{ item.PeopleNum }}</view>
<view class="flex1">单价:¥{{ item.PeoplePrice }}</view> <view class="flex1">单价:¥{{ item.PeoplePrice }}</view>
...@@ -490,6 +490,10 @@ ...@@ -490,6 +490,10 @@
return x.id == this.DiningList[this.dataIndex].DiningSummaryList[this.datas.diningIndex] return x.id == this.DiningList[this.dataIndex].DiningSummaryList[this.datas.diningIndex]
.ReimburseList.CurrencyId .ReimburseList.CurrencyId
}) })
console.log("this.DiningList[this.dataIndex].DiningSummaryList[this.datas.diningIndex]",this.DiningList[this.dataIndex].DiningSummaryList[this.datas.diningIndex]
.ReimburseList);
console.log("dining_list",list)
if (list.length == 1) list = this.currencyObj = JSON.parse(JSON.stringify(list[0])) if (list.length == 1) list = this.currencyObj = JSON.parse(JSON.stringify(list[0]))
else this.currencyObj = { else this.currencyObj = {
id: 0, id: 0,
......
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