Commit ee8c9f58 authored by 黄奎's avatar 黄奎

页面修改

parent a6b1b470
......@@ -42,22 +42,40 @@
<template>
<table style="margin-left:3px;padding-top:2px;width:100%;font-size:12px">
<tr>
<th style="text-align:center" title="价格">ばいばい価格</th>
<th style="text-align:center" title="成本价格">原価</th>
<th style="text-align:center" title="成本价人民币">原価人民元</th>
<th style="text-align:center;display:none" title="内部卖价人民币">内部で人民元を売り買いする</th>
<th style="text-align:center" title="同行卖价人民币">同業で人民元を売り買いする</th>
<th style="text-align:center" title="直客价格人民币">顧客価格は人民元</th>
<th style="text-align:center" title="是否含税">税込みかどうか</th>
<th style="text-align:center" title="库存数量">在庫数量</th>
<th style="text-align:center">操作</th>
</tr>
<tr v-for="(childItem,childIndex) in subItem.data.SubList" :key="childIndex">
<td style="text-align:center;white-space:nowrap; ">
{{childItem.CostPrice}}
</td>
<td style="text-align:center;white-space:nowrap;display:none">
{{childItem.Money}}
</td>
<td style="text-align:center;white-space:nowrap; ">
{{childItem.CostPrice}}
{{childItem.B2BPrice}}
</td>
<td style="text-align:center;white-space:nowrap; ">
{{childItem.B2CPrice}}
</td>
<td style="text-align:center;white-space:nowrap; ">
{{childItem.IsContainsTaxStr}}
<template v-if="childItem.IsContainsTax==0">
<br/>
<span style="color:red">
税金:{{childItem.TaxPrice}}
</span>
</template>
</td>
<td style="text-align:center">
{{childItem.Inventory}}
</td>
<td style="text-align:center">
<td style="text-align:center;white-space:nowrap;">
<a style="text-decoration:underline;cursor:pointer;color:#089bab;"
@click="GetRoomPrice(childItem)">修正</a>
</td>
......@@ -268,6 +286,11 @@
this.hotelInfo.HotelName = json.HotelName;
this.hotelInfo.TotalInventory = json.TotalInventory;
this.hotelInfo.Validity = json.Validity;
this.hotelInfo.B2BPrice=json.B2BPrice;
this.hotelInfo.B2CPrice=json.B2CPrice;
this.hotelInfo.IsContainsTax=json.IsContainsTax;
this.hotelInfo.IsContainsTaxStr=json.IsContainsTaxStr;
this.hotelInfo.TaxPrice=json.TaxPrice;
for (let i = 0; i < this.dayList[key].days.length; i++) {
for (let j = 0; j < json.length; j++) {
if (this.dayList[key].days[i].day === json[j].DayStr) {
......
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