Commit 0986109d authored by 黄奎's avatar 黄奎

11

parent ae8f1f8b
...@@ -402,6 +402,10 @@ ...@@ -402,6 +402,10 @@
<label>{{$t('hotel.hotel_SalesPrice')}}{{dayobject.SalesPrice}}</label> <label>{{$t('hotel.hotel_SalesPrice')}}{{dayobject.SalesPrice}}</label>
<label>{{$t('hotel.hotel_B2CPrice')}}{{dayobject.B2CPrice}}</label> <label>{{$t('hotel.hotel_B2CPrice')}}{{dayobject.B2CPrice}}</label>
</div> </div>
<div class="popList">
<label>最低价格:{{dayobject.MinPrice}}</label>
<label>最高价格:{{dayobject.MaxPrice}}</label>
</div>
<div class="HT_supplier" v-if="IsSelfBook"> <div class="HT_supplier" v-if="IsSelfBook">
<label>{{$t('hotel.hotel_Supplier')}}{{dayobject.SupplierName}}</label> <label>{{$t('hotel.hotel_Supplier')}}{{dayobject.SupplierName}}</label>
</div> </div>
...@@ -432,7 +436,7 @@ ...@@ -432,7 +436,7 @@
</div> </div>
<div class="resDiv"> <div class="resDiv">
<!--prop="CostPrice"--> <!--prop="CostPrice"-->
<el-form-item :label="$t('hotel.hotel_CostPrice')" > <el-form-item :label="$t('hotel.hotel_CostPrice')">
<el-input type="text" class="w210" v-model="addMsg.CostPrice" <el-input type="text" class="w210" v-model="addMsg.CostPrice"
@keyup.native="checkPrice(addMsg,'CostPrice')"></el-input> @keyup.native="checkPrice(addMsg,'CostPrice')"></el-input>
</el-form-item> </el-form-item>
...@@ -653,6 +657,8 @@ ...@@ -653,6 +657,8 @@
dayItem.B2BPrice = tableinfo[j].B2BPrice; dayItem.B2BPrice = tableinfo[j].B2BPrice;
dayItem.B2CPrice = tableinfo[j].B2CPrice; dayItem.B2CPrice = tableinfo[j].B2CPrice;
dayItem.SalesPrice = tableinfo[j].SalesPrice; dayItem.SalesPrice = tableinfo[j].SalesPrice;
dayItem.MinPrice = tableinfo[j].MinPrice;
dayItem.MaxPrice = tableinfo[j].MaxPrice;
dayItem.checkState = this.$calendarUtils.checkState.hasValue; dayItem.checkState = this.$calendarUtils.checkState.hasValue;
dayItem.SupplierName = tableinfo[j].SupplierName; dayItem.SupplierName = tableinfo[j].SupplierName;
dayItem.ID = tableinfo[j].ID; dayItem.ID = tableinfo[j].ID;
......
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