Commit 3052a743 authored by 黄奎's avatar 黄奎

新增领队请假信息

parent 8d4c34b6
...@@ -2367,13 +2367,31 @@ ...@@ -2367,13 +2367,31 @@
</div> </div>
<table class="RS_visaTable"> <table class="RS_visaTable">
<tr> <tr>
<th>签发地</th> <th colspan="3">请假信息</th>
<th>类型</th>
<th width=100>到期日</th>
</tr> </tr>
<tr> <tr>
<td colspan="3">无签证信息</td> <th>姓名</th>
<th>类型</th>
<th width=100>时间</th>
</tr> </tr>
<template v-if="LeaderHolidyList&&LeaderHolidyList.length>0">
<tr v-for="(leaderItem,leaderIndex) in LeaderHolidyList">
<td>
{{LeaderInfoList.LeaderGuide.Surname}}{{LeaderInfoList.LeaderGuide.Name}}
</td>
<td>
请假
</td>
<td>
{{leaderItem.StartDateStr2}}{{leaderItem.EndDateStr2}}
</td>
</tr>
</template>
<template v-else>
<tr>
<td colspan="3">暂无请假信息</td>
</tr>
</template>
</table> </table>
</div> </div>
<div> <div>
...@@ -2966,6 +2984,8 @@ ...@@ -2966,6 +2984,8 @@
ScheduleArray: [], ScheduleArray: [],
ckedIndex: -1, ckedIndex: -1,
LeaderInfoList: [], LeaderInfoList: [],
//领队请假信息
LeaderHolidyList: [],
beforeInfo: { beforeInfo: {
DuringHoliday: '', DuringHoliday: '',
date: '', date: '',
...@@ -3136,7 +3156,8 @@ ...@@ -3136,7 +3156,8 @@
this.isShowLayer = false; this.isShowLayer = false;
this.isShowLayer2 = true; this.isShowLayer2 = true;
} }
let maxPeopleNum = (Number(this.addMsg.ManNum) + Number(this.addMsg.ChirdNoNeedBedNum) + Number(this.addMsg.ChirdNeedBedNum) + Number(this.addMsg.OldPeopleNum) + Number(this.addMsg.AirticketNum) ) let maxPeopleNum = (Number(this.addMsg.ManNum) + Number(this.addMsg.ChirdNoNeedBedNum) + Number(this
.addMsg.ChirdNeedBedNum) + Number(this.addMsg.OldPeopleNum) + Number(this.addMsg.AirticketNum))
this.Unit_PriceList = []; this.Unit_PriceList = [];
this.apipost('sellorder_post_GetLessPrice', { this.apipost('sellorder_post_GetLessPrice', {
"TCID": obj.TCID, "TCID": obj.TCID,
...@@ -4426,6 +4447,8 @@ ...@@ -4426,6 +4447,8 @@
}, },
//点击选中名单 //点击选中名单
getLeaderInfo(index, LeaderId) { getLeaderInfo(index, LeaderId) {
this.LeaderInfoList = {};
this.LeaderHolidyList = [];
this.ckedIndex = index; this.ckedIndex = index;
let msg = { let msg = {
ID: LeaderId, ID: LeaderId,
...@@ -4435,6 +4458,7 @@ ...@@ -4435,6 +4458,7 @@
"leader_Get_GetPriceLeaderInfo", msg, "leader_Get_GetPriceLeaderInfo", msg,
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.LeaderHolidyList=res.data.data.holidyList;
this.LeaderInfoList = res.data.data; this.LeaderInfoList = res.data.data;
this.beforeInfo.DuringHoliday = ""; this.beforeInfo.DuringHoliday = "";
this.beforeInfo.date = ""; this.beforeInfo.date = "";
......
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