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.

424 lines
13 KiB

4 years ago
<template>
<view>
<view class="page-body">
<view class="page-section page-section-gap">
<map style="width: 100%; height: 100vh;position: relative;" :latitude="latitude" :longitude="longitude"
:markers="covers">
<view class="book-box">
<view class="activityBox-content flex-col">
<view class="activityBox-row" style="margin-bottom: 56rpx;">
4 years ago
<text class="activityBox-title">{{info.name||""}}</text>
4 years ago
</view>
<view class="activityBox-row">
<text class="icon-shijian iconfont"></text>
4 years ago
<text>可入场时间段{{info.start_time||""}}-{{info.end_time||""}}</text>
4 years ago
</view>
<view class="activityBox-row">
<text class="icon-huodong iconfont"></text>
4 years ago
<text>地址{{info.address||""}}</text>
4 years ago
</view>
4 years ago
<view class="activityBox-row flex-row align-center" style="margin-bottom: 0rpx;"
@click="openlocation">
4 years ago
<text class="icon-ditu-dibiao iconfont"></text>
4 years ago
<text>距离{{distance||"0"}}km</text>
4 years ago
<view class="tomap">
<text class="icon-daohang1 iconfont" style="margin-right: 0;"></text>
</view>
</view>
<view class="parkbox">
<view class="parkbox-title">可预约车位</view>
<view class="parkbox-content flex-row justify-around">
3 years ago
<view class="parkbox-item flex-row align-center" style="margin-right: 10rpx;padding: 28rpx 20rpx;"
4 years ago
@click="handleSelectPark(2)" :class="(currentPark==2?'parkbox-item-on':'')"
v-if="remain_big_park>0">
4 years ago
<view class="parkbox-item-status" v-if="currentPark==2">
4 years ago
<u-icon name="checkmark" color="#fff" size="20rpx"></u-icon>
</view>
<text class="iconfont icon-tingchechang1" style="font-size: 28rpx;"></text>
<view>
3 years ago
<text>大中(09:00-12:00){{remain_big_park}}</text>
4 years ago
</view>
</view>
4 years ago
<view class="parkbox-item flex-col align-center"
4 years ago
:class="(currentPark==1?'parkbox-item-on':'')" @click="handleSelectPark(1)"
4 years ago
style="margin-right: 10rpx;" v-if="remain_small_park>0">
4 years ago
<view class="parkbox-item-status" v-if="currentPark==1">
4 years ago
<u-icon name="checkmark" color="#fff" size="20rpx"></u-icon>
</view>
<view class="flex-row align-center">
<text class="iconfont icon-tingchechang1"
4 years ago
style="font-size: 28rpx;"></text><text>小车{{remain_small_park}}</text>
4 years ago
</view>
4 years ago
<text style="font-size: 24rpx;color: #828282;">充电桩空闲0</text>
3 years ago
</view>
3 years ago
<view class="parkbox-item flex-row align-center" style="margin-right: 10rpx;padding: 28rpx 20rpx;"
@click="handleSelectPark(4)" :class="(currentPark==4?'parkbox-item-on':'')"
v-if="remain_big_park2>0">
<view class="parkbox-item-status" v-if="currentPark==4">
<u-icon name="checkmark" color="#fff" size="20rpx"></u-icon>
</view>
<text class="iconfont icon-tingchechang1" style="font-size: 28rpx;"></text>
<view>
<text>大中(13:00-16:00){{remain_big_park2}}</text>
</view>
</view>
3 years ago
<view class="parkbox-item flex-row align-center" style=""
@click="handleSelectPark(3)" :class="(currentPark==3?'parkbox-item-on':'')"
v-if="remain_special_park>0">
<view class="parkbox-item-status" v-if="currentPark==3">
<u-icon name="checkmark" color="#fff" size="20rpx"></u-icon>
</view>
<text class="iconfont icon-tingchechang1" style="font-size: 28rpx;"></text>
<view>
<text>残疾人车位{{remain_special_park}}</text>
</view>
3 years ago
</view>
<view class="parkbox-item flex-row align-center" style=""
v-if="remain_special_park<=0&&remain_big_park<=0&&remain_small_park<=0">
<text class="iconfont icon-tingchechang1" style="font-size: 28rpx;"></text>
<view>
<text>暂无可选停车位</text>
</view>
4 years ago
</view>
</view>
</view>
4 years ago
4 years ago
<view class="activityBox-row" style="margin-top: 20rpx;color: #EF9525;"
@click="showSelectorder=true">
4 years ago
<text>选择信息{{selectInfo.info||"暂未选择"}}</text>
</view>
4 years ago
</view>
</view>
<view class="footer">
4 years ago
<u-button type="primary" :disabled="btnDisabled" @click="tobook"></u-button>
4 years ago
</view>
</map>
</view>
</view>
4 years ago
<u-popup :show="showSelectorder" mode="bottom" :closeOnClickOverlay="false" @close="closeorder" :round="10">
<view class="mpopup">
<view class="mpopup-title">
选择预约的活动或者预约的参观
</view>
<view class="mpopup-content" style="padding: 40rpx 20rpx;">
<view v-if="listOrder.length!=0">
<view class="mpopup-title" style="text-align: left;padding: 20rpx 0;font-size: 14px;">
预约的参观
</view>
<block v-for="(item,index) in listOrder" :key="index">
<view class="box-tip flex-row align-center" @click="handleSelectOrder(index,1)"
style="margin-bottom: 20rpx;">
<u-icon :name="(item.checked?'checkmark-circle-fill':'checkmark-circle')"
4 years ago
:color="(item.checked?'#EF9525':'#828282')">
4 years ago
</u-icon>
<view class="box-tiptxt" style="margin-left: 10rpx;">
{{$u.timeFormat(new Date(item.date), 'mm月dd日')}}
{{item.time}}{{item.details_count}} 位观众</text>
</view>
</view>
</block>
</view>
<view v-if="listActivtyOrder.length!=0">
<view class="mpopup-title" style="text-align: left;padding: 20rpx 0;font-size: 14px;">
预约的活动
</view>
<block v-for="(item,index) in listActivtyOrder" :key="index">
<view class="box-tip flex-row align-center" @click="handleSelectOrder(index,2)"
style="margin-bottom: 20rpx;">
<u-icon :name="(item.checked?'checkmark-circle-fill':'checkmark-circle')"
4 years ago
:color="(item.checked?'#EF9525':'#828282')">
4 years ago
</u-icon>
<view class="box-tiptxt" style="margin-left: 10rpx;">
活动时间{{item.activity.start_time}}
报名数量{{item.total}}</text>
</view>
</view>
</block>
</view>
<u-button type="primary" @click="handleConfirmOrder"></u-button>
</view>
</view>
</u-popup>
4 years ago
</view>
</template>
<script>
export default {
data() {
return {
latitude: 31.299893,
longitude: 120.626022,
4 years ago
userlatitude: 31.299893,
userlongitude: 120.626022,
distance: 0,
4 years ago
info: {},
covers: [],
3 years ago
currentPark: 0,
4 years ago
btnDisabled: false,
showSelectorder: false,
listOrder: [],
listActivtyOrder: [],
selectInfo: {
info: "",
orderType: 1,
orderid: 0,
userlatitude: 31.299893,
userlongitude: 120.626022
},
remain_big_park: 0,
3 years ago
remain_small_park: 0,
3 years ago
remain_special_park: 0,
remain_big_park2: 0
4 years ago
}
},
4 years ago
onLoad() {
var that = this;
4 years ago
wx.getLocation({
success(res) {
that.userlatitude = res.latitude;
that.userlongitude = res.longitude;
that.loadOrder(function(res) {
that.loadactivityOrder(function(r) {
if (res.length + r.length == 0) {
that.util.toast("您需要预约参观或者预约活动才可以停车");
that.btnDisabled = true;
} else {
that.btnDisabled = false;
that.showSelectorder = true;
}
})
});
}
4 years ago
})
4 years ago
4 years ago
},
4 years ago
methods: {
4 years ago
handleConfirmOrder() {
if (this.selectInfo.orderid === 0) {
this.util.toast("请选择预约的活动或者预约的参观");
return false;
}
this.showSelectorder = false;
},
handleSelectOrder(index, type) {
for (var m of this.listActivtyOrder) {
m.checked = false;
}
for (var m of this.listOrder) {
m.checked = false;
}
if (type == 1) {
this.listOrder[index].checked = true;
this.selectInfo.info = this.$moment(this.listOrder[index].date).format("MM月DD日") + " " + this
3 years ago
.listOrder[index].time
4 years ago
this.selectInfo.time = this.$moment(this.listOrder[index].date + " " + this.listOrder[
3 years ago
index].time.split("-")[1]).format("YYYY-MM-DD HH:mm:ss");
4 years ago
this.selectInfo.orderid = this.orderid = this.listOrder[index].id;
} else {
this.listActivtyOrder[index].checked = true
3 years ago
this.selectInfo.info = this.$moment(this.listActivtyOrder[index].activity.end_time).format(
3 years ago
"MM月DD日 HH:mm")
4 years ago
3 years ago
this.selectInfo.time = this.$moment(this.listActivtyOrder[index].activity.end_time).format(
3 years ago
"YYYY-MM-DD HH:mm:ss");
4 years ago
this.selectInfo.orderid = this.orderid = this.listActivtyOrder[index].id;
}
this.orderType = type;
this.selectInfo.orderType = type;
this.loadInfo();
},
openselectorder() {
this.showSelectorder = true;
},
closeorder() {
this.showSelectorder = false;
},
4 years ago
loadOrder(cb) {
var that = this;
this.util.request({
api: '/api/mobile/user/my-visit-order',
data: {
3 years ago
status: 1,
not_expire:1
4 years ago
},
utilSuccess: function(res) {
4 years ago
for (var mod of res) {
mod.checked = false;
}
that.listOrder = res;
4 years ago
cb(res)
},
utilFail: function(res) {
this.util.toast(res)
}
})
},
loadactivityOrder(cb) {
var that = this;
this.util.request({
api: '/api/mobile/user/my-activity-order',
data: {
3 years ago
status: 1,
not_expire:1
4 years ago
},
utilSuccess: function(res) {
4 years ago
for (var mod of res) {
mod.checked = false;
}
that.listActivtyOrder = res;
4 years ago
cb(res);
},
utilFail: function(res) {
this.util.toast(res)
}
})
},
4 years ago
4 years ago
handleSelectPark(type) {
this.currentPark = type;
},
4 years ago
openlocation() {
uni.openLocation({
latitude: this.info.latitude,
longitude: this.info.longitude,
name: this.info.name,
address: this.info.address
});
},
4 years ago
loadInfo() {
4 years ago
var that = this;
this.util.request({
4 years ago
api: '/api/mobile/carpark/show',
data: {
date: that.selectInfo.time,
latitude: that.userlatitude,
longitude: that.userlongitude
},
utilSuccess: function(res) {
that.info = res.detail;
that.distance = res.distance;
that.info.latitude = parseFloat(res.detail.latitude);
that.info.longitude = parseFloat(res.detail.longitude);
that.remain_big_park = res.remain_big_park;
3 years ago
that.remain_small_park = res.remain_small_park;
4 years ago
that.remain_special_park = res.remain_special_park;
3 years ago
that.remain_big_park2 = res.remain_big_park2;
4 years ago
var mod = {
4 years ago
latitude: that.info.latitude,
longitude: that.info.longitude,
4 years ago
width: 70,
height: 70,
4 years ago
iconPath: '/static/img/location.png',
id: 1
4 years ago
}
that.covers.push(mod);
},
utilFail: function(res) {
}
})
},
handleBook() {
uni.$u.throttle(this.tobook, 500)
},
4 years ago
tobook() {
4 years ago
if (this.selectInfo.orderid === 0) {
this.util.toast("请选择预约的活动或者预约的参观");
return false;
3 years ago
} else if (this.currentPark === 0) {
this.util.toast("请选择停车位");
return false;
4 years ago
} else {
var json = escape(JSON.stringify(this.selectInfo));
uni.navigateTo({
url: "book?bookinfo=" + json + "&id=" + this.info.id + "&currentPark=" + this.currentPark
})
}
4 years ago
}
}
}
</script>
<style>
@import url("@/static/css/activitybox.css");
.parkbox-item-status {
position: absolute;
right: 0;
top: 0;
background: #EF9525;
border-top-right-radius: 5rpx;
border-bottom-left-radius: 5rpx;
font-size: 20rpx;
color: #828282;
padding: 7rpx;
}
.parkbox-title {
margin-bottom: 40rpx;
margin-top: 40rpx;
font-size: 26rpx;
color: #4E4E4E;
}
.parkbox-item-on {
background: #FCF6E3 !important;
4 years ago
border: 2rpx solid #EF9525 !important;
4 years ago
}
3 years ago
.parkbox-content {
flex-wrap: wrap;
}
4 years ago
.parkbox-item {
4 years ago
border: 2rpx solid #F7F6F4;
4 years ago
background: #F7F6F4;
border-radius: 5rpx;
position: relative;
3 years ago
padding: 10rpx 20rpx;
margin-bottom: 20rpx;
4 years ago
display: flex;
justify-content: center;
font-size: 26rpx;
color: #EF9525;
box-sizing: border-box;
}
.book-box {
3 years ago
height: 60%;
4 years ago
position: absolute;
bottom: 108rpx;
left: 0;
background: #FFFFFF;
border-top-left-radius: 16rpx;
border-top-right-radius: 16rpx;
margin: 0rpx 2%;
width: 96%;
}
4 years ago
.box-tiptxt {
4 years ago
font-size: 30rpx;
4 years ago
}
4 years ago
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 108rpx;
box-sizing: border-box;
background: #FFFFFF;
box-shadow: 2rpx 3rpx 10rpx 0rpx rgba(107, 94, 77, 0.3);
padding: 21rpx 25rpx;
}
4 years ago
</style>