Commit b4001fbe authored by 黄奎's avatar 黄奎

报价单新增真实餐名称显示

parent da9d4557
......@@ -113,7 +113,7 @@
</tr>
<tr>
<td width="80" class="txtRightCost">出团公司</td>
<td >
<td>
{{postConfig.OutBranchName}}
</td>
<td width="80" class="txtRightCost">行程天数</td>
......@@ -216,15 +216,21 @@
<td>
{{subItem.PassFee}}
</td>
<td>
<td style="width:250px;">
<template v-if="subItem.BreakfastName&&subItem.BreakfastName!=''">
早: {{subItem.BreakfastName}}<br />
</template>
<template v-if="subItem.LunchName&&subItem.LunchName!=''">
午: {{subItem.LunchName}}<br />
<template v-if="subItem.LunchRealName&&subItem.LunchRealName!=''">
<font style="color:red;"> 真实名称:{{subItem.LunchRealName}}</font><br />
</template>
</template>
<template v-if="subItem.DinnerName&&subItem.DinnerName!=''">
晚: {{subItem.DinnerName}}<br />
<template v-if="subItem.DinnerRealName&&subItem.DinnerRealName!=''">
<font style="color:red;">真实名称:{{subItem.DinnerRealName}}</font><br />
</template>
</template>
</td>
<td>
......
......@@ -119,15 +119,21 @@
<td>
{{subItem.PassFee}}
</td>
<td>
<td style="width:250px;">
<template v-if="subItem.BreakfastName&&subItem.BreakfastName!=''">
早: {{subItem.BreakfastName}}<br />
</template>
<template v-if="subItem.LunchName&&subItem.LunchName!=''">
午: {{subItem.LunchName}}<br />
<template v-if="subItem.LunchRealName&&subItem.LunchRealName!=''">
<font style="color:red;"> 真实名称:{{subItem.LunchRealName}}</font><br />
</template>
</template>
<template v-if="subItem.DinnerName&&subItem.DinnerName!=''">
晚: {{subItem.DinnerName}}<br />
<template v-if="subItem.DinnerRealName&&subItem.DinnerRealName!=''">
<font style="color:red;">真实名称:{{subItem.DinnerRealName}}</font><br />
</template>
</template>
</td>
<td>
......@@ -458,7 +464,8 @@
<template v-else>
{{postConfig.TeamTypeName}}
</template>
<template v-if="postConfig.PriceTeamTypeName&&postConfig.PriceTeamTypeName.length>0">/{{postConfig.PriceTeamTypeName}}</template>
<template
v-if="postConfig.PriceTeamTypeName&&postConfig.PriceTeamTypeName.length>0">/{{postConfig.PriceTeamTypeName}}</template>
</td>
</tr>
......@@ -473,7 +480,7 @@
<script>
export default {
props: ["postConfig", "OtherPrice", "dayCostPrice", "LineList", "CostNumberList", "CurrencyNumberListExt",
"CostCurrencyList", "teamPrice", "IsEdit", "loading","OfferId"
"CostCurrencyList", "teamPrice", "IsEdit", "loading", "OfferId"
],
data() {
return {
......
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