Commit 18049289 authored by qiaoyajun's avatar qiaoyajun

线路筛选

parent e4644875
......@@ -963,7 +963,7 @@
},
//获取线路列表
getLineList () {
this.apipost('line_post_GetList', {}, res => {
this.apipost('line_post_GetList', {"LineDirection":2}, res => {
if (res.data.resultCode == 1) {
this.queryCommonData.LineList = res.data.data
this.queryCommonData.PlaceList = []
......
......@@ -816,7 +816,7 @@
},
//获取线路列表
getLineList () {
this.apipost('line_post_GetList', {}, res => {
this.apipost('line_post_GetList', {"LineDirection":3}, res => {
if (res.data.resultCode == 1) {
this.queryCommonData.LineList = res.data.data
this.queryCommonData.PlaceList = []
......
......@@ -720,7 +720,8 @@
this.loading = true;
this.apipost(
"travel_get_GetCommonTravelInfo", {
isSale: this.TeamType==1?true:false
isSale: this.TeamType==1?true:false,
lineDirection:this.TeamType==2?3:2
},
res => {
if (res.data.resultCode == 1) {
......
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