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

页面修改

parent 223316dc
......@@ -104,9 +104,11 @@
display: inline-block;
border-radius: 5px;
}
.comSearchDiv .el-checkbox{
margin-right:0;
.comSearchDiv .el-checkbox {
margin-right: 0;
}
</style>
<template>
<div class="TC_Content">
......@@ -255,9 +257,16 @@
:value="item.id"></el-option>
</el-select>
</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 class="comSearchDiv">
<span>{{$t('scen.sc_temStatu')}}</span>
<span>
......@@ -538,6 +547,13 @@
<span>{{$t('Airticket.Air_StartTime')}}</span>
<span class="go_date">{{item.StartDate}}</span>
</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">
<span>{{$t('Operation.Op_teamNotice')}}</span>
{{item.OutNotice==1?'OK':'暂定'}}
......@@ -1259,7 +1275,9 @@
HotelId: 0, //酒店编号
HotelUseTime: "", //酒店使用时间
QBusNumber: "",
PriceTeamType: "", //团队类型
},
TeamListArr: [], //团队类型
//报价单查询条件
offerQMsg: {
CreateBy: 0, //报价单创建人
......@@ -1375,6 +1393,19 @@
},
},
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
clickAirticket(item) {
this.updateAirticketObj.TCID = item.TCID;
......@@ -2502,6 +2533,7 @@
if (routeName == 'TravelControlList2') {
this.queryMsg.TeamType = 3;
}
this.getTeamList();
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