Commit 15544915 authored by huangyuanyuan's avatar huangyuanyuan

1

parents fc1b186e 47b164b2
......@@ -1895,6 +1895,16 @@
</span>
<span v-if="childItem.FinanceList.length===0">暂无数据</span>
</div>
<div>
<span>发票单据:</span>
<span v-for="(item2,index2) in childItem.InvoiceApplyList" :key="index2">
<span v-if="item2.InvoiceApplyState===6" class="groupTourOrder_tickets_blue" @click="goIisDetail(item2.ID)">{{item2.ID}}</span>
<span v-else-if="item2.InvoiceApplyState===1" class="groupTourOrder_tickets_green" @click="goIisDetail(item2.ID)">{{item2.ID}}</span>
<span v-else-if="item2.InvoiceApplyState===5" class="groupTourOrder_tickets_red" @click="goIisDetail(item2.ID)">{{item2.ID}}</span>
<span v-else-if="item2.InvoiceApplyState===3" class="groupTourOrder_tickets_black" @click="goIisDetail(item2.ID)">{{item2.ID}}</span>
</span>
<span v-if="childItem.InvoiceApplyList.length===0" style="cursor: default;">暂无数据</span>
</div>
</td>
</tr>
</tbody>
......@@ -2796,6 +2806,12 @@ import updateSalesMan from "../../commonPage/updateSalesMan.vue";
updateSalesMan:updateSalesMan
},
methods: {
goIisDetail: function (id) { // 跳转发票详情页面
this.$router.push({
name: 'invoicesManagerDetail',
query: { id: id,noDetail: 1,blank: "y",}
});
},
// 给其他费用赋值
Yszefz(){
this.Ysze=true;
......
......@@ -919,7 +919,7 @@
noData: false,
currentPage: 1,
//航班配置
FlightState: 1,
FlightState: 0,
//预警团
IsWarning: false,
WarningQuery: '-1',
......@@ -943,12 +943,12 @@
flightStatus: [{
Id: 0,
Name: '不限',
Checked: false
Checked: true
},
{
Id: 1,
Name: '已配置',
Checked: true
Checked: false
},
{
Id: 2,
......@@ -1672,39 +1672,13 @@
this.$route.query.tcmun = this.$route.query.tcmun
if (this.$route.query.tcmun) {
this.queryCommonData.flightCKed = [];
this.queryCommonData.flightCKed.push(0);
this.flightStatus.forEach((subItem, subIndex) => {
if (subIndex == 0) {
subItem.Checked = true;
} else {
subItem.Checked = false;
}
});
this.queryMsg.TCNUM = this.$route.query.tcmun;
}
if (this.$route.query.HotelId) {
this.queryCommonData.flightCKed = [];
this.queryCommonData.flightCKed.push(0);
this.flightStatus.forEach((subItem, subIndex) => {
if (subIndex == 0) {
subItem.Checked = true;
} else {
subItem.Checked = false;
}
});
this.queryMsg.HotelId = this.$route.query.HotelId;
}
if (this.$route.query.HotelUseTime) {
this.queryCommonData.flightCKed = [];
this.queryCommonData.flightCKed.push(0);
this.flightStatus.forEach((subItem, subIndex) => {
if (subIndex == 0) {
subItem.Checked = true;
} else {
subItem.Checked = false;
}
});
this.queryMsg.HotelUseTime = this.$route.query.HotelUseTime
}
......
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