Commit cba07d53 authored by 黄奎's avatar 黄奎

机票修改

parent 0afeff93
...@@ -1299,7 +1299,7 @@ ...@@ -1299,7 +1299,7 @@
<li> <li>
<span> <span>
<em>编号</em> <em>编号</em>
<el-input v-model="msg.ID" placeholder="机票编号"></el-input> <el-input v-model="msg.ID" placeholder="机票编号" @keyup.native="checkInteger(msg,'ID')"></el-input>
</span> </span>
</li> </li>
<li> <li>
...@@ -2733,8 +2733,7 @@ ...@@ -2733,8 +2733,7 @@
this.chengeDelIdList = []; this.chengeDelIdList = [];
this.apipost( this.apipost(
"ticket_get_GetEntityExtend", { "ticket_get_GetEntityExtend", {
ID, ID:ID
ID
}, },
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
...@@ -2751,8 +2750,6 @@ ...@@ -2751,8 +2750,6 @@
res.data.data.flightList.forEach((x, index) => { res.data.data.flightList.forEach((x, index) => {
this.chengeDelIdList.push(x.ID); this.chengeDelIdList.push(x.ID);
}); });
console.log(this.addMsg,'addmsg');
} else { } else {
this.Warning(res.data.message); this.Warning(res.data.message);
} }
......
...@@ -622,13 +622,13 @@ ...@@ -622,13 +622,13 @@
<div class="flexOne TravelticketManager"> <div class="flexOne TravelticketManager">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
<span> <span>
<em>线路</em> <em>线路</em>
<el-select v-model="Query.LineId" :placeholder="$t('pub.pleaseSel')" class="w120"> <el-select v-model="Query.LineId" :placeholder="$t('pub.pleaseSel')" class="w120">
<el-option :label="$t('pub.unlimitedSel')" :value="0"></el-option> <el-option :label="$t('pub.unlimitedSel')" :value="0"></el-option>
<el-option v-for="item in LineList" :key="item.LineID" :label="item.LineName" <el-option v-for="item in LineList" :key="item.LineID" :label="item.LineName" :value="item.LineID">
:value="item.LineID"></el-option> </el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
...@@ -660,6 +660,12 @@ ...@@ -660,6 +660,12 @@
</el-input> </el-input>
</span> </span>
</li> </li>
<li>
<span>
<em>机票编号</em>
<el-input v-model="Query.ID" placeholder="机票编号" @keyup.native="checkInteger(Query,'ID')"></el-input>
</span>
</li>
<li> <li>
<button class="hollowFixedBtn" type="button" <button class="hollowFixedBtn" type="button"
@click="resetPageIndex(),getList()">{{$t('pub.searchBtn')}}</button> @click="resetPageIndex(),getList()">{{$t('pub.searchBtn')}}</button>
...@@ -816,11 +822,12 @@ ...@@ -816,11 +822,12 @@
<div class="TCID_cont PingFangSC"> <div class="TCID_cont PingFangSC">
团期: 团期:
<span v-show="item.PriceList.length==0">暂无</span> <span v-show="item.PriceList.length==0">暂无</span>
<span class="Ticket_TCID" v-for="subItem in item.PriceList">({{subItem.TCID}}){{subItem.TCNUM}} &nbsp;</span> <span class="Ticket_TCID" v-for="subItem in item.PriceList">({{subItem.TCID}}){{subItem.TCNUM}}
&nbsp;</span>
</div> </div>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<div class="TCID_cont"> 采购人:<span style="color:red;">{{item.PurchaseManName}}</span> </div> <div class="TCID_cont"> 采购人:<span style="color:red;">{{item.PurchaseManName}}</span> </div>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
<div class="TCID_cont"> <div class="TCID_cont">
...@@ -860,7 +867,7 @@ ...@@ -860,7 +867,7 @@
data() { data() {
return { return {
Query: { Query: {
LineId:0,//线路编号 LineId: 0, //线路编号
//页码 //页码
pageIndex: 1, pageIndex: 1,
//每页显示条数 //每页显示条数
...@@ -887,10 +894,12 @@ ...@@ -887,10 +894,12 @@
//起飞状态 //起飞状态
FlyState: "0", FlyState: "0",
//是否查询采购人员(1-查询,0-不查询) //是否查询采购人员(1-查询,0-不查询)
IsQueryPurchase:1, IsQueryPurchase: 1,
//机票编号
ID: "",
}, },
//线路列表 //线路列表
LineList:[], LineList: [],
//下拉框默认值 //下拉框默认值
selectDefauleValue: 0, selectDefauleValue: 0,
//防止重复提交 //防止重复提交
...@@ -932,16 +941,21 @@ ...@@ -932,16 +941,21 @@
methods: { methods: {
getList() { getList() {
this.loading = true; this.loading = true;
if (this.Query.ID == "") {
this.Query.ID = 0;
}
this.apipost( this.apipost(
"AirTicket_get_GetPageList", "AirTicket_get_GetPageList",
this.Query, this.Query,
res => { res => {
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.Query.total = res.data.data.count; this.Query.total = res.data.data.count;
this.noData = !this.Query.total > 0; this.noData = !this.Query.total > 0;
this.dataList = res.data.data.pageData; this.dataList = res.data.data.pageData;
if (this.Query.ID == 0) {
this.Query.ID = "";
}
} else { } else {
this.Warning(res.data.message); this.Warning(res.data.message);
} }
...@@ -958,8 +972,7 @@ ...@@ -958,8 +972,7 @@
this.LineList = res.data.data; this.LineList = res.data.data;
} }
}, },
err => { err => {}
}
); );
}, },
GetPlaceHolder() { GetPlaceHolder() {
......
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