111
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

270 lines
5.5 KiB

2 years ago
<template>
1 year ago
<view class="screen">
<view class="screen_left">
<!-- <uni-icons type="smallcircle-filled" size='25'></uni-icons> -->
<image style="width: 50rpx;height: 50rpx;" src="../../../static/img/price.png"></image>
<view class="screen_text">
<text @click="showFn">{{filterData[seleIndex].lable}}</text>
<view v-if="isShow.filterBox" class="filterBox">
<view @click="priceSele(item,index)" :style="{color:index==seleIndex?'#666666':''}"
v-for="(item,index) in filterData">{{item.lable}}</view>
2 years ago
</view>
</view>
1 year ago
<image style="width: 40rpx;height: 25rpx;" src="../../../static/img/chevron-up.png"></image>
2 years ago
</view>
1 year ago
<view @click="move" class="screen_bottom">{{site?'沿途站点':'全路径'}}</view>
</view>
2 years ago
</template>
<script>
export default {
props: {
1 year ago
selePrice: {
type: Object,
default: () => {
2 years ago
return null
}
},
polyline: {
type: Array,
default: () => {
return []
}
}
},
data() {
return {
1 year ago
site: true,
seleIndex: 1,
filterData: [],
2 years ago
list: [],
isShow: {
screen: false,
1 year ago
filterBox: false,
strategy: false
2 years ago
}
}
},
created() {
// this.list = uni.getStorageSync('recentSearch') || [];
// console.log(this.list)
1 year ago
2 years ago
},
watch: {
polyline: function(n, o) {
n.length !== 0 ? this.isShow.screen = true : this.isShow.screen = false;
1 year ago
2 years ago
},
selePrice: function(n, o) {
1 year ago
2 years ago
this.filterData = []
1 year ago
if (n) {
Object.keys(this.selePrice).forEach((item, index) => {
if (this.selePrice[item] !== null) {
2 years ago
this.filterData.push({
1 year ago
lable: item == 'middlePrice' ? '低于' + this.moneyIntercept(this
.selePrice.middlePrice) : '最低价格',
value: item == 'middlePrice' ? this.moneyIntercept(this.selePrice
.middlePrice) : this.moneyIntercept(this.selePrice.minPrice)
2 years ago
})
}
})
this.filterData.unshift({
1 year ago
lable: '所有价格',
value: 99999
2 years ago
});
1 year ago
if (this.filterData.length == 1) {
this.seleIndex = 0;
} else {
2 years ago
this.seleIndex = 1;
}
}
1 year ago
2 years ago
}
},
methods: {
1 year ago
closeFn() {
this.isShow.filterBox = false
2 years ago
},
1 year ago
showFn(e) {
this.isShow.filterBox = !this.isShow.filterBox;
this.$emit('swich', false);
2 years ago
},
1 year ago
move() {
this.$emit('mapEventListeners', 'mapEventListeners', 'MoveToLocation', this.site);
2 years ago
this.site = !this.site;
1 year ago
2 years ago
},
1 year ago
getprice() {
if (this.filterData.length == 1) this.seleIndex = 0;
return this.filterData[this.seleIndex].value || 0.00
2 years ago
},
1 year ago
priceSele(e, w) {
2 years ago
this.seleIndex = w;
this.isShow.filterBox = false;
1 year ago
this.$emit('mapEventListeners', 'mapEventListeners', 'localScreen', 'footer')
2 years ago
console.log(e)
},
1 year ago
mapRoutePlanning(e, i) {
this.$emit('mapEventListeners', 'cardPlanning', e)
2 years ago
},
collection(e, i) {
let recentSearch = uni.getStorageSync('recentSearch');
if (e.type == 'lately') {
e.type = 'collection';
if (i == 0 && e.id != recentSearch[0].id) {
recentSearch.splice(i + 1, 0, e);
} else {
recentSearch.splice(i, 1, e);
}
} else if (e.type == 'collection') {
this.list.splice(i, 1);
recentSearch.splice(i, 1);
}
uni.setStorageSync('recentSearch', recentSearch);
},
checkFn(e, list) {
let check = true
for (let i = 0; i < list.length; i++) {
if (list[i].id == e.id) {
check = false
return
}
}
return check
},
lower(e) {
console.log(e)
}
}
}
</script>
<style lang="scss">
1 year ago
.seleStrategy {
2 years ago
height: 80rpx;
width: 180rpx;
background-color: #FFFFFF;
border-radius: 10px;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
1 year ago
transition: top .3s, right 0.3s, opacity 0s;
2 years ago
overflow: hidden;
}
1 year ago
.mapIcon {
2 years ago
text-align: end;
padding-right: 30rpx;
padding-bottom: 15rpx;
position: relative;
height: 80rpx;
}
1 year ago
2 years ago
.filterBox {
position: absolute;
width: max-content;
height: 244rpx;
background-color: #FFFFFF;
top: -280rpx;
border-radius: 10px;
font-size: 28rpx;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
padding: 10rpx 25rpx;
color: #BBBBBB;
}
.screen_left {
position: relative;
display: flex;
align-items: center;
}
.screen_text {
margin: 0 30rpx;
font-size: 36rpx;
color: #666666;
font-weight: 600;
position: relative;
}
.screen_bottom {
width: 240rpx;
height: 80rpx;
background: #FF6700;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
font-size: 36rpx;
font-weight: 600;
}
.screen {
margin: 0 30rpx;
height: 120rpx;
background: #FFFFFF;
border-radius: 15px;
margin-bottom: 90rpx;
display: flex;
align-items: center;
padding: 15rpx;
justify-content: space-between;
}
.lately {
position: absolute;
right: 0;
top: -22rpx;
width: 90rpx;
height: 50rpx;
background-color: #FF9C58;
color: #FFFFFF;
font-size: 16rpx;
display: flex;
align-items: center;
justify-content: center;
}
.swiper-item_text {
font-size: 28rpx;
color: #666666;
width: 100%;
margin-top: 5rpx;
}
.swiper-item_title {
font-size: 24rpx;
color: #BBBBBB;
}
.swiper-item {
width: 300rpx;
height: 300rpx;
background-color: #FFFFFF;
border-radius: 10px;
padding: 22rpx;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.footerScroll_body {
position: absolute;
z-index: 999999;
width: 100vw;
bottom: 20px;
}
.swiper {
width: 100%;
height: 300rpx;
display: flex;
}
</style>