Commit 1cab2ce5 authored by zhengke's avatar zhengke

修改排序

parent fd0ebf28
......@@ -756,7 +756,7 @@
searchMealType: [], //饮食条件搜索
searchMinRate: '', //最小金额
searchMaxRate: '', //最大金额
sort: 0
sort: 1
},
//是否显示日期范围
isShowTime: true,
......@@ -1190,6 +1190,19 @@
})
}
this.dataList2 = ourHotelList.concat(this.dataList);
this.dataList2.forEach(x=>{
if(isNaN(x.reviewRating)){
x.reviewRating=0
}
})
//按价格升序
if(this.msg.sort==2){
this.dataList2.sort(this.getSortFun('asc', 'lowrateBySetCurrency'));
}
//按照星级降序
if(this.msg.sort==1){
this.dataList2.sort(this.getSortFun('desc', 'reviewRating'));
}
let jalanTotalCount = 0;
if (res.data.data.parmResult && res.data.data.parmResult.numberOfResultMatched) {
jalanTotalCount = res.data.data.parmResult.numberOfResultMatched;
......@@ -1281,6 +1294,12 @@
//获取价格
getPrice(price) {
return Math.ceil(price / this.JapanIncrease);
},
//数组排序
getSortFun(order, sortBy) {
var ordAlpah = (order == 'asc') ? '>' : '<';
var sortFun = new Function('a', 'b', 'return a.' + sortBy + ordAlpah + 'b.' + sortBy + '?1:-1');
return sortFun;
}
}
};
......
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