Commit 2884a771 authored by 黄奎's avatar 黄奎

页面修改

parent 7e4b4495
......@@ -273,6 +273,8 @@
word-break: break-all;
padding: 5px;
line-height: 2;
text-align: left;
;
}
.TC_LASTTD div {
......@@ -571,11 +573,11 @@
<tr>
<td>紧急情况联系人姓名</td>
<td colspan="3">
<el-input type="text" class="w300" v-model="CtObj.contactsName"></el-input>
<el-input type="text" class="w300" v-model="CtObj.contactsName" placeholder="请填写紧急情况联系人姓名"></el-input>
</td>
<td>联系电话</td>
<td colspan="2">
<el-input type="text" class="w300" v-model="CtObj.contactsMobile"></el-input>
<el-input type="text" class="w300" v-model="CtObj.contactsMobile" placeholder="请填写联系电话"></el-input>
</td>
</tr>
</tfoot>
......@@ -606,21 +608,21 @@
<tr v-for="(item,index) in CtObj.ticketList" :key="index+20000">
<td>{{index+1}}.</td>
<td>
<el-input v-model="item.Flight_number" style="width:100px"></el-input>
<el-input v-model="item.Flight_number" style="width:100px" placeholder="请填写航班号"></el-input>
</td>
<td>
<el-input v-model="item.FlightDate" style="width:120px"></el-input>
<el-input v-model="item.FlightDate" style="width:120px" placeholder="请填写航班日期"></el-input>
</td>
<td>
<el-input v-model="item.dName" style="width:200px"></el-input>
<el-input v-model="item.dName" style="width:200px" placeholder="请填写出发城市"></el-input>
<el-input v-model="item.aName" style="width:200px"></el-input>
<el-input v-model="item.aName" style="width:200px" placeholder="请填写到达城市"></el-input>
</td>
<td>
<el-input v-model="item.Departure_time" style="width:100px"></el-input>
<el-input v-model="item.Departure_time" style="width:100px" placeholder="请填写出发时间"></el-input>
</td>
<td>
<el-input v-model="item.Arrival_time" style="width:100px"></el-input>
<el-input v-model="item.Arrival_time" style="width:100px" placeholder="请填写到达时间"></el-input>
</td>
<td>
<a style="color:blue;cursor:pointer;" @click="DeleteTicket(index)">删除</a>
......@@ -641,16 +643,16 @@
</tr>
<tr v-for="(item,index) in CtObj.hotelList" :key="index+30000">
<td colspan="3">
<el-input v-model="item.Name" style="width:300px"></el-input>
<el-input v-model="item.Name" style="width:300px" placeholder="请填写酒店名称"></el-input>
</td>
<td>
<el-input v-model="item.HotelType" style="width:200px"></el-input>
<el-input v-model="item.HotelType" style="width:200px" placeholder="请填写酒店类型"></el-input>
</td>
<td>
<el-input v-model="item.RoomType" style="width:200px"></el-input>
<el-input v-model="item.RoomType" style="width:200px" placeholder="请填写酒店房型"></el-input>
</td>
<td>
<el-input v-model="item.RoomNum" style="width:200px"></el-input>
<el-input v-model="item.RoomNum" style="width:200px" placeholder="请填写数量"></el-input>
</td>
<td>
<a style="color:blue;cursor:pointer;" @click="DeleteHotel(index)">删除</a>
......@@ -739,15 +741,19 @@
</el-form-item>
<el-form-item label="人数">
<el-input type="text" v-model="CtObj.clientNumber" maxlength="100" class="w300"
@keyup.native="checkInteger(CtObj,'clientNumber')"></el-input>
@keyup.native="checkInteger(CtObj,'clientNumber')" placeholder="请填写人数"></el-input>
</el-form-item>
<el-form-item label="费用总额(小写)人民币">
<el-form-item label="单价">
<el-input type="text" v-model="CtObj.adultPrice" maxlength="100" class="w300"
@keyup.native="checkPrice(CtObj,'adultPrice')" placeholder="请填写单价"></el-input>
</el-form-item>
<el-form-item label="费用总额(小写)人民币">
<el-input type="text" v-model="CtObj.orderPrice" maxlength="100" class="w300"
@keyup.native="checkPrice(CtObj,'orderPrice')"></el-input>
@keyup.native="checkPrice(CtObj,'orderPrice')" placeholder="费用总额(小写)人民币"></el-input>
元.
</el-form-item>
<el-form-item :label="(CtObj.clientNumber?CtObj.clientNumber:'')+'人合计'">
<el-input type="text" v-model="CtObj.totalMoneyInfo" maxlength="500" class="w300"></el-input>
<el-input type="text" v-model="CtObj.totalMoneyInfo" maxlength="500" class="w300" placeholder="8人合计:8*22800元/人=182400元"></el-input>
</el-form-item>
</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