Commit d10b1456 authored by 黄奎's avatar 黄奎

地接修改

parent 607af612
...@@ -2,6 +2,14 @@ ...@@ -2,6 +2,14 @@
<div> <div>
<div class="query-box" style="border-bottom: none;"> <div class="query-box" style="border-bottom: none;">
<ul> <ul>
<li><span><em>线路</em>
<el-select v-model="msg.LineId" filterable :placeholder="$t('pub.pleaseSel')" class="w150" @change="getLineTeamList()">
<el-option label="不限" :value='0'></el-option>
<el-option v-for="item in LineList" :label='item.LineName' :value='item.LineID' :key='item.LineID'>
</el-option>
</el-select>
</span>
</li>
<li><span><em>系列</em> <li><span><em>系列</em>
<el-select v-model="msg.LineteamId" filterable :placeholder="$t('pub.pleaseSel')" class="w150"> <el-select v-model="msg.LineteamId" filterable :placeholder="$t('pub.pleaseSel')" class="w150">
<el-option label="不限" value='-1'></el-option> <el-option label="不限" value='-1'></el-option>
...@@ -273,7 +281,7 @@ ...@@ -273,7 +281,7 @@
pageIndex: 1, pageIndex: 1,
pageSize: 10, pageSize: 10,
SelectType: 6, SelectType: 6,
LineId: 14, LineId: 0,
LineteamId: "-1", LineteamId: "-1",
PriceStatus: "0", PriceStatus: "0",
//地接团号 //地接团号
...@@ -330,7 +338,7 @@ ...@@ -330,7 +338,7 @@
this.LineTeamList = []; this.LineTeamList = [];
this.apipost( this.apipost(
"team_post_GetList", { "team_post_GetList", {
lineID: 14, lineID: this.msg.LineId,
isTOOP: 1 isTOOP: 1
}, },
res => { res => {
...@@ -482,8 +490,9 @@ ...@@ -482,8 +490,9 @@
"-" + "-" +
myDate.getDate(); myDate.getDate();
this.msg.StartDate = nowDate; this.msg.StartDate = nowDate;
this.getLineList();
this.getList() this.getList()
this.getLineTeamList() //this.getLineTeamList();
}, },
} }
......
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