Commit 026f6ab2 authored by zhengke's avatar zhengke

修复bug

parent 9090910c
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
<tr> <tr>
<th v-if="isShowGuoji">国际机票 <input type="checkbox" @change="checkAllbox(checkdGuoji,'guoji')" v-model="checkdGuoji"/></th> <th v-if="isShowGuoji">国际机票 <input type="checkbox" @change="checkAllbox(checkdGuoji,'guoji')" v-model="checkdGuoji"/></th>
<th v-if="isShowGuoji">国内机票 <input type="checkbox" @change="checkAllbox(checkedGuonei,'guonei')" v-model="checkedGuonei"/></th> <th v-if="isShowGuoji">国内机票 <input type="checkbox" @change="checkAllbox(checkedGuonei,'guonei')" v-model="checkedGuonei"/></th>
<th v-if="isShowGuoji">国际中 <input type="checkbox" @change="checkAllbox(checkedGJzd,'gjzd')" v-model="checkedGJzd"/></th> <th v-if="isShowGuoji">国际中 <input type="checkbox" @change="checkAllbox(checkedGJzd,'gjzd')" v-model="checkedGJzd"/></th>
<th v-if="isShowGuoji">税金 <input type="checkbox" @change="checkAllbox(checkedshuijin,'shuijin')" v-model="checkedshuijin"/></th> <th v-if="isShowGuoji">税金 <input type="checkbox" @change="checkAllbox(checkedshuijin,'shuijin')" v-model="checkedshuijin"/></th>
<th v-if="isShowGuoji">升舱 <input type="checkbox" @change="checkAllbox(checkedsc,'shengcang')" v-model="checkedsc"/></th> <th v-if="isShowGuoji">升舱 <input type="checkbox" @change="checkAllbox(checkedsc,'shengcang')" v-model="checkedsc"/></th>
<th>旅客姓名</th> <th>旅客姓名</th>
...@@ -489,6 +489,7 @@ ...@@ -489,6 +489,7 @@
Obj: JSON.parse(this.$route.query.Obj), Obj: JSON.parse(this.$route.query.Obj),
SourceID: this.$route.query.id, SourceID: this.$route.query.id,
TCIDList: JSON.parse(this.$route.query.TCIDList), TCIDList: JSON.parse(this.$route.query.TCIDList),
companyIDList:JSON.parse(this.$route.query.companyIDList),
isFromPassenger:true, isFromPassenger:true,
} }
this.$router.push({ this.$router.push({
......
...@@ -2517,7 +2517,6 @@ ...@@ -2517,7 +2517,6 @@
}, },
//跳转至旅客名单 //跳转至旅客名单
goCustomList(path, obj, type, title){ goCustomList(path, obj, type, title){
console.log(obj.TCIDList)
this.$router.push({ this.$router.push({
name: path, name: path,
query: { query: {
...@@ -2528,7 +2527,7 @@ ...@@ -2528,7 +2527,7 @@
Type: type Type: type
}), }),
TCIDList: JSON.stringify(obj.TCIDList), TCIDList: JSON.stringify(obj.TCIDList),
companyIDList: obj.OutBranchIdList, companyIDList: JSON.stringify(obj.OutBranchIdList),
tab: title tab: title
} }
}) })
......
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