Commit 53912d91 authored by 黄奎's avatar 黄奎

页面修改

parent 223316dc
...@@ -104,9 +104,11 @@ ...@@ -104,9 +104,11 @@
display: inline-block; display: inline-block;
border-radius: 5px; border-radius: 5px;
} }
.comSearchDiv .el-checkbox{
margin-right:0; .comSearchDiv .el-checkbox {
margin-right: 0;
} }
</style> </style>
<template> <template>
<div class="TC_Content"> <div class="TC_Content">
...@@ -255,9 +257,16 @@ ...@@ -255,9 +257,16 @@
:value="item.id"></el-option> :value="item.id"></el-option>
</el-select> </el-select>
</div> </div>
<div>
<span>团队类型</span>
<el-select class="w180 multiple_input" :class="{'SaleBranchList':queryMsg.PriceTeamType==''}"
v-model="queryMsg.PriceTeamType" clearable>
<el-option v-for="item in TeamListArr" :key="item.Id" :label="item.Name" :value="item.Id">
</el-option>
</el-select>
</div>
</div> </div>
</div> </div>
<div class="comSearchDiv"> <div class="comSearchDiv">
<span>{{$t('scen.sc_temStatu')}}</span> <span>{{$t('scen.sc_temStatu')}}</span>
<span> <span>
...@@ -538,6 +547,13 @@ ...@@ -538,6 +547,13 @@
<span>{{$t('Airticket.Air_StartTime')}}</span> <span>{{$t('Airticket.Air_StartTime')}}</span>
<span class="go_date">{{item.StartDate}}</span> <span class="go_date">{{item.StartDate}}</span>
</p> </p>
<p class="travelnowrap" v-if="item.PriceOfferUrl">
<span>报价单</span>
<span class="go_date">
<a style="margin-left:20px;color:blue;" :href="item.PriceOfferUrl" v-if="item.PriceOfferUrl"
target="_blank">下载报价单</a>
</span>
</p>
<p class="travelnowrap"> <p class="travelnowrap">
<span>{{$t('Operation.Op_teamNotice')}}</span> <span>{{$t('Operation.Op_teamNotice')}}</span>
{{item.OutNotice==1?'OK':'暂定'}} {{item.OutNotice==1?'OK':'暂定'}}
...@@ -1259,7 +1275,9 @@ ...@@ -1259,7 +1275,9 @@
HotelId: 0, //酒店编号 HotelId: 0, //酒店编号
HotelUseTime: "", //酒店使用时间 HotelUseTime: "", //酒店使用时间
QBusNumber: "", QBusNumber: "",
PriceTeamType: "", //团队类型
}, },
TeamListArr: [], //团队类型
//报价单查询条件 //报价单查询条件
offerQMsg: { offerQMsg: {
CreateBy: 0, //报价单创建人 CreateBy: 0, //报价单创建人
...@@ -1375,6 +1393,19 @@ ...@@ -1375,6 +1393,19 @@
}, },
}, },
methods: { methods: {
//获取团队类型
getTeamList() {
this.apipost("travel_get_GetTravelPriceTeamTypeList", {}, res => {
if (res.data.resultCode == 1) {
this.TeamListArr = res.data.data;
console.log("this.TeamListArr", this.TeamListArr);
} else {
this.Error(res.data.message);
}
},
err => {}
);
},
//获取TCID //获取TCID
clickAirticket(item) { clickAirticket(item) {
this.updateAirticketObj.TCID = item.TCID; this.updateAirticketObj.TCID = item.TCID;
...@@ -2502,6 +2533,7 @@ ...@@ -2502,6 +2533,7 @@
if (routeName == 'TravelControlList2') { if (routeName == 'TravelControlList2') {
this.queryMsg.TeamType = 3; this.queryMsg.TeamType = 3;
} }
this.getTeamList();
this.getControlList(); this.getControlList();
} }
}; };
......
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