Commit c06499e9 authored by 吴春's avatar 吴春

1

parent 7da51f7e
......@@ -1399,6 +1399,8 @@ export default {
// pageIndex: 1,
// pageSize: 10,
// priceOrderByField: 4,
SeriesIds:"",
LineIds:"",
searchKey: "", // 搜索词
// startCityId: 0,
// PageCount: 0,
......@@ -1440,6 +1442,8 @@ export default {
var areaId = this.getUrlKey("areaId", window.location.href);
var areaIds = this.getUrlKey("areaIds", window.location.href)
var categoryId = this.getUrlKey("categoryId", window.location.href);
var seriesIds = this.getUrlKey("SeriesIds", window.location.href);
var lineIds = this.getUrlKey("LineIds", window.location.href);
if (qsearchKey) {
this.qMsg.searchKey = qsearchKey;
}
......@@ -1458,7 +1462,12 @@ export default {
if (categoryId) {
this.qMsg.categoryId = Number(categoryId);
}
if (seriesIds) {
this.qMsg.SeriesIds = seriesIds;
}
if (lineIds) {
this.qMsg.LineIds = lineIds;
}
if ((qsearchKey || qsearchDate || qsearchEndDate) && this.ShowType != 2) {
this.goSearchHandler();
}
......@@ -1488,10 +1497,13 @@ export default {
// pageSize: 10,
// priceOrderByField: 4,
searchKey: "", // 搜索词
SeriesIds:"",
LineIds:"",
// startCityId: 0,
// PageCount: 0,
// TotalCount: 0,
dayNumList: [], // 天数
webSiteCategoryIds: "", // 分类Id
placeIds: "", // 目的地城市Id
orderBy: 0 // 排序 0默认 1价格升序 2价格降序
......@@ -1619,7 +1631,9 @@ export default {
orderBySales: 0,
startCityId: this.qMsg.startCityId,
weekDayList: this.WeekDay,
dayNumList: this.dayNum
dayNumList: this.dayNum,
SeriesIds:this.qMsg.SeriesIds,
LineIds:this.qMsg.LineIds,
};
if (localStorage.b2bUser) {
var b2bUser = JSON.parse(window.localStorage.getItem("b2bUser"));
......
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