Commit 8e7aca8c authored by 黄媛媛's avatar 黄媛媛

update

parent bcacbe49
...@@ -24,6 +24,13 @@ ...@@ -24,6 +24,13 @@
<el-input v-model="msg.TCNUM"></el-input> <el-input v-model="msg.TCNUM"></el-input>
</span> </span>
</li> </li>
<li>
<span>
<em>地接团号</em>
<el-input v-model="msg.DMCNum"></el-input>
</span>
</li>
<li> <li>
<span> <span>
<em>财务单据</em> <em>财务单据</em>
...@@ -72,6 +79,7 @@ ...@@ -72,6 +79,7 @@
<input type="checkbox" v-model="isCkedAll" @click='checkedAll()'/> <input type="checkbox" v-model="isCkedAll" @click='checkedAll()'/>
</th> </th>
<th>团号</th> <th>团号</th>
<th>地接团号</th>
<th>出发时间</th> <th>出发时间</th>
<th>酒店名称</th> <th>酒店名称</th>
<th>天数</th> <th>天数</th>
...@@ -89,13 +97,14 @@ ...@@ -89,13 +97,14 @@
<input type="checkbox" :disabled="item.disabled" :value="item" v-model="customerList" @change="ckeckedOne"/> <input type="checkbox" :disabled="item.disabled" :value="item" v-model="customerList" @change="ckeckedOne"/>
</td> </td>
<td>{{item.TCNUM}}{{item.TCID}}</td> <td>{{item.TCNUM}}{{item.TCID}}</td>
<td>{{item.DMCNum}}</td>
<td>{{item.StartDate}}</td> <td>{{item.StartDate}}</td>
<td>{{item.NewHotelName}}</td> <td>{{item.NewHotelName}}</td>
<td>{{item.Days}}</td> <td>{{item.Days}}</td>
<td>{{item.SinleRoomNum}}{{item.SinleRoomPeopleNum}}</td> <td>{{item.SinleRoomNum}}{{item.SinleRoomPeopleNum}}</td>
<td>{{item.DoubleRoom}}{{item.DoublePeopleRoom}}</td> <td>{{item.DoubleRoom}}{{item.DoublePeopleRoom}}</td>
<td>{{item.KingRoom}}{{item.KingPeopleRoom}}</td> <td>{{item.KingRoom}}{{item.KingPeopleRoom}}</td>
<td>{{item.TripleRoom}}{{item.TriplePeopleRoom}}</td> <td>{{item.TripleRoom}}{{item.TriplePeopleRoom}}</td>
<td> <td>
<span v-if="item.FinanceId==0"></span> <span v-if="item.FinanceId==0"></span>
<span @click="goFncUrl('FinancialDocumentsDetail', item.FinanceId)" style="cursor: pointer;text-decoration: underline;" v-else>{{item.FinanceId}}</span> <span @click="goFncUrl('FinancialDocumentsDetail', item.FinanceId)" style="cursor: pointer;text-decoration: underline;" v-else>{{item.FinanceId}}</span>
...@@ -127,10 +136,10 @@ ...@@ -127,10 +136,10 @@
<tr v-for="(item,index) in addMsg.AirServiceList" :key="index"> <tr v-for="(item,index) in addMsg.AirServiceList" :key="index">
<td>{{item.TCNUM}}</td> <td>{{item.TCNUM}}</td>
<td>{{item.NewHotelName}}</td> <td>{{item.NewHotelName}}</td>
<td>{{item.SinleRoomNum}}{{item.SinleRoomPeopleNum}}</td> <td>{{item.SinleRoomNum}}{{item.SinleRoomPeopleNum}}</td>
<td>{{item.DoubleRoom}}{{item.DoublePeopleRoom}}</td> <td>{{item.DoubleRoom}}{{item.DoublePeopleRoom}}</td>
<td>{{item.KingRoom}}{{item.KingPeopleRoom}}</td> <td>{{item.KingRoom}}{{item.KingPeopleRoom}}</td>
<td>{{item.TripleRoom}}{{item.TriplePeopleRoom}}</td> <td>{{item.TripleRoom}}{{item.TriplePeopleRoom}}</td>
</tr> </tr>
<tr v-if="addMsg.AirServiceList.length==0"> <tr v-if="addMsg.AirServiceList.length==0">
<td colspan="5">暂无数据</td> <td colspan="5">暂无数据</td>
...@@ -150,6 +159,10 @@ ...@@ -150,6 +159,10 @@
<el-form-item label="团号"> <el-form-item label="团号">
<el-input v-model="addMsg.TCNUM" ></el-input> <el-input v-model="addMsg.TCNUM" ></el-input>
</el-form-item> </el-form-item>
<el-form-item label="地接团号">
<el-input v-model="addMsg.DMCNum" ></el-input>
</el-form-item>
<el-form-item label="时间"> <el-form-item label="时间">
<el-date-picker <el-date-picker
v-model="dateList1" v-model="dateList1"
...@@ -240,6 +253,7 @@ export default { ...@@ -240,6 +253,7 @@ export default {
NewHotelID:0, NewHotelID:0,
TCID:'', TCID:'',
TCNUM:'', TCNUM:'',
DMCNum:'',
QStartDate:'', QStartDate:'',
QEndDate:'', QEndDate:'',
AirServiceList:[], AirServiceList:[],
...@@ -274,6 +288,7 @@ export default { ...@@ -274,6 +288,7 @@ export default {
NewHotelID:'', NewHotelID:'',
TCID:'', TCID:'',
TCNUM:'', TCNUM:'',
DMCNum:'',
StratTime:'', StratTime:'',
EndTime:'', EndTime:'',
}, },
......
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