Commit 38697b98 authored by youjie's avatar youjie

no message

parent 4b305818
......@@ -1064,11 +1064,17 @@ export default {
this.$forceUpdate();
this.msg.StartPrice = e.min;
this.msg.EndPrice = e.max;
let PriceName = ''
this.PriceList.forEach((x) => {
if(e.min>=x.MinPrice && e.max<=x.MaxPrice){
this.msg.PriceName = x.Name;
PriceName = x.Name;
}
})
if(PriceName){
this.msg.PriceName = PriceName;
}else{
this.msg.PriceName = '';
}
this.resetQuery();
},
dateRangeHandler(e) {
......
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