Commit b4001fbe authored by 黄奎's avatar 黄奎

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

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