Commit bff40683 authored by 华国豪's avatar 华国豪 🙄

1

parent a1e88012
...@@ -1409,6 +1409,14 @@ export default { ...@@ -1409,6 +1409,14 @@ export default {
if (!JSON.parse(sessionStorage.getItem("saveGuestInfo"))){ if (!JSON.parse(sessionStorage.getItem("saveGuestInfo"))){
this.Description = this.orderObj.laRemark?this.orderObj.laRemark:''; this.Description = this.orderObj.laRemark?this.orderObj.laRemark:'';
} }
let Description="旅客名单:";
let describeList=JSON.parse(sessionStorage.getItem("TipGuestList"));
if(describeList){
describeList.forEach(item=>{
Description+=item.GuestName+" ";
})
this.msg.Description = Description
}
} }
if(data.VorcherInos){ if(data.VorcherInos){
data.VorcherInos.forEach(x=>{ data.VorcherInos.forEach(x=>{
......
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
</td> </td>
</tr> </tr>
<template> <template>
<tr v-if="TotalNav.busPrice.length"> <tr v-if="TotalNav.busPrice && TotalNav.busPrice.length">
<td>总金额</td> <td>总金额</td>
<td colspan="16"> <td colspan="16">
<span v-for="item in TotalNav.busPrice"> <span v-for="item in TotalNav.busPrice">
......
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