Commit 3f59507d authored by 黄奎's avatar 黄奎

页面修改

parent 04290cde
......@@ -333,7 +333,7 @@
<td width="70" style="text-align:right;color:red">付款方式:</td>
<td>
<el-select class='w135 sel' v-model='subItem.PayStyle' :placeholder="$t('pub.pleaseSel')"
:disabled="IsEditHotel==0?true:false">
:disabled="IsEditHotel==0?true:false" @change="PayChange(subItem)">
<el-option label='请选择' :value='0'></el-option>
<el-option label='现付' :value='1'></el-option>
<el-option label='签单' :value='2'></el-option>
......@@ -497,6 +497,14 @@
commonPHInfo: commonPHlInfo
},
methods: {
//付款方式切换
PayChange(subItem)
{
if(subItem.PayStyle>0)
{
subItem.DMCPayType=subItem.PayStyle;
}
},
//调用子组件方法
GetHotelUsePriceList(HotelId, UseDay, index, hotelSubIndex) {
let str = `dmccomPriceHotelInfo${index}${hotelSubIndex}`;
......
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