Commit 35b37242 authored by 黄奎's avatar 黄奎

旅客名单下载

parent 824e4ca3
...@@ -1176,7 +1176,8 @@ ...@@ -1176,7 +1176,8 @@
item.SalePlatList.push(parseInt(y)) item.SalePlatList.push(parseInt(y))
}) })
} }
}) //console.log("HotelOrderListReports",item.HotelOrderListReports);
});
} }
}, },
err => {} err => {}
...@@ -1782,7 +1783,7 @@ ...@@ -1782,7 +1783,7 @@
if (this.queryCommonData.IsParentCompany != 1) { if (this.queryCommonData.IsParentCompany != 1) {
this.queryMsg.OutBranchIds.push(this.CurrentUserInfo.RB_Branch_id) this.queryMsg.OutBranchIds.push(this.CurrentUserInfo.RB_Branch_id)
} }
this.getControlList() this.getControlList();
} }
} }
......
...@@ -55,8 +55,8 @@ ...@@ -55,8 +55,8 @@
v-loading="QueryMsg.loading" v-loading="QueryMsg.loading"
> >
<tr> <tr>
<th width="50">ID</th> <th width="50">房间数</th>
<th width="50">分房</th> <th width="50">房号</th>
<th width="130">酒店及房型</th> <th width="130">酒店及房型</th>
<th width="130">旅客姓名</th> <th width="130">旅客姓名</th>
<th width="110">英文姓</th> <th width="110">英文姓</th>
...@@ -82,8 +82,8 @@ ...@@ -82,8 +82,8 @@
</tr> </tr>
<tbody v-for="(item,index) in QueryMsg.dataList" :key="index"> <tbody v-for="(item,index) in QueryMsg.dataList" :key="index">
<tr v-for="(subItem,subIndex) in item"> <tr v-for="(subItem,subIndex) in item">
<td>{{subItem.Number}}</td> <td v-if="subIndex==0" :rowspan="subItem.RowsCount">{{index+1}}</td>
<td>{{subItem.HouseNo!="10000"?subItem.HouseNo:""}}</td> <td v-if="subIndex==0" :rowspan="subItem.RowsCount"></td>
<td>{{getHouseTypeStr(subItem)}}</td> <td>{{getHouseTypeStr(subItem)}}</td>
<td>{{subItem.GuestName}}</td> <td>{{subItem.GuestName}}</td>
<td>{{subItem.ESurName}}</td> <td>{{subItem.ESurName}}</td>
...@@ -106,11 +106,11 @@ ...@@ -106,11 +106,11 @@
</td> </td>
<td>{{subItem.VisaType}}</td> <td>{{subItem.VisaType}}</td>
</tr> </tr>
<tr height="30"> <!-- <tr height="30">
<td colspan="21" align="left"> <td colspan="21" align="left">
<span class="colorE95252" style="text-align:left">备注:{{item[0].Remarks}}</span> <span class="colorE95252" style="text-align:left">备注:{{item[0].Remarks}}</span>
</td> </td>
</tr> </tr> -->
</tbody> </tbody>
</table> </table>
</div> </div>
......
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