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.

569 lines
16 KiB

1 year ago
<template>
1 year ago
<view class="container">
<image class="cbg" :src="base.imgHost('common_bg.png')"></image>
<view class="wrap">
<u-form :model="form" ref="uForm" :label-width="140" :label-align="'left'" :error-type="['message']">
<u-form-item label="预约场地" prop="siteName" required>
<u-input :placeholder="'请选择'" v-model="form.siteName" type="select" @click="siteShow = true" />
</u-form-item>
<u-form-item label="预约日期" prop="date" required>
<u-input :placeholder="'请选择'" v-model="form.date" :type="'select'" @click="dateShow = true" />
</u-form-item>
<u-form-item label="预约时间" prop="timeRange" required>
<u-input :placeholder="'请选择'" v-model="form.timeRange" :type="'select'" @click="openTime" />
</u-form-item>
<u-form-item label="预约事项" prop="content" required>
<u-input :placeholder="'请输入预约事项'" v-model="form.content" type="textarea" />
</u-form-item>
<u-form-item label="身份证号" prop="idcard" required>
<u-input :placeholder="'请输入身份证号'" v-model="form.idcard" type="idcard" />
</u-form-item>
<u-form-item label="车牌" prop="plate">
<u-button size="mini" type="primary" @click="openPlate(-1)"></u-button>
<view v-for="(item,index) in plateList">
<view v-if="plateList[index]['show']"
style="display: flex;justify-content: space-between;align-items: center;">
<u-input :placeholder="''" v-model="plateList[index]['plate']" :disabled="true"
@click="openPlate(index)" />
<u-button size="mini" type="error" @click="delPlate(index)"></u-button>
</view>
</view>
</u-form-item>
<u-form-item label="同行人" prop="accompany">
<u-button size="mini" :disabled="isTotal" :type="isTotal?'':'primary'"
@click="addAccompany">新增</u-button>
<text v-if="siteTotal && siteTotal>0">{{siteTotal}}</text>
<u-table>
<u-tr>
<u-th>姓名</u-th>
<u-th>操作</u-th>
</u-tr>
<u-tr v-for="(item,index) in form.accompany">
<u-td>{{item.name}}</u-td>
<u-td>
<u-button size="mini" type="error" @click="delAccompany(index)"></u-button>
</u-td>
</u-tr>
</u-table>
</u-form-item>
</u-form>
<view class="form-btn">
<view @click="submit" type="primary">预约</view>
</view>
1 year ago
</view>
1 year ago
1 year ago
<u-picker @confirm="dateConfirm" mode="time" v-model="dateShow" :params="dateParams"></u-picker>
1 year ago
<timeSlot ref="timeslot" :title="'选择时间段'" :min="hMin" :max="hMax" @confirm="confirmTime"></timeSlot>
1 year ago
<u-picker @confirm="siteConfirm" v-model="siteShow" :range="siteList" range-key="real_name"
1 year ago
mode="selector"></u-picker>
1 year ago
<!-- 新增车牌 -->
<view class="modal">
<u-popup v-model="showPlate" mode="bottom">
<view class="modal-tip">车牌号</view>
<view class="modal-content" style="height:400rpx">
<plate ref="plates" @listenPlateChange="(val)=>{plateChange(val,index)}"
:defaultPlate="plateNumber" />
</view>
<view class="form-btn" @click="confirmPlate">
<view type="primary">确认</view>
</view>
</u-popup>
1 year ago
</view>
1 year ago
<!-- 新增修改同行人 -->
<view class="modal">
<u-popup v-model="accompanyShow" mode="bottom">
<view class="modal-tip">同行人</view>
<view class="modal-content">
姓名<u-input :placeholder="'请输入姓名'" v-model="accompanyObj.name" />
</view>
<view class="modal-content">
1 year ago
身份证<u-input type="idcard" :placeholder="'请输入身份证'" v-model="accompanyObj.idcard" />
1 year ago
</view>
<view class="modal-content">
1 year ago
手机号<u-input type="number" :placeholder="'请输入手机号'" v-model="accompanyObj.mobile" />
1 year ago
</view>
<view class="form-btn">
<view @click="submitAccompany" type="primary">提交</view>
1 year ago
</view>
</u-popup>
</view>
1 year ago
<!-- 预约须知 -->
<u-modal v-model="showTips" negative-top="400" :show-cancel-button="false" :show-confirm-button="false"
:show-title="false">
<view class="slot-content">
<view class="slot-content-title">预约须知</view>
<view class="slot-content-input">
<view>1使用权限仅限校友本人使用不可代为预约否则取消预约资格</view>
<view>2图书馆禁止饮食抽烟</view>
</view>
<view class="slot-content-btn" style="padding-top:30rpx">
<view @click="confirmTips = true,showTips=false">我已知晓</view>
</view>
</view>
</u-modal>
1 year ago
</view>
</template>
<script>
1 year ago
import timeSlot from "@/components/wanghexu-timeslot/wanghexu-timeslot.vue"
import {
plate
1 year ago
} from '@/components/plate/index.vue'
1 year ago
export default {
components: {
1 year ago
timeSlot,
1 year ago
plate
1 year ago
},
data() {
return {
1 year ago
dateShow: false,
isLocked:false,
1 year ago
showTips: true,
1 year ago
confirmTips: false,
hMin: 0,
hMax: 24,
appoinementType: '',
1 year ago
dateParams: {
year: true,
month: true,
day: true,
hour: false,
minute: false,
second: false
1 year ago
},
showPlate: false,
plateIndex: -1,
plateList: [],
1 year ago
plateNumber: ['苏', 'E', '', '', '', '', ''],
1 year ago
form: {
date: '',
timeRange: '',
start_time: '',
end_time: '',
1 year ago
content: '',
idcard: '',
1 year ago
site: "",
siteName: '',
accompany: []
},
siteShow: false,
1 year ago
siteList: [],
siteTotal: 0,
isTotal: false,
1 year ago
accompanyShow: false,
accompanyObj: {
name: '',
idcard: '',
mobile: ''
},
accompanyIndex: -1,
rules: {
date: [{
required: true,
message: '请选择预约日期',
trigger: ['change', 'blur'],
1 year ago
}],
content: [{
required: true,
message: '请输入预约事项',
trigger: ['change', 'blur'],
}],
idcard: [{
required: true,
message: '请输入身份证号',
trigger: ['blur'],
}, {
validator: (rule, value, callback) => {
return this.$u.test.idCard(value);
},
message: '身份证号不正确',
trigger: ['blur'],
1 year ago
}],
timeRange: [{
required: true,
message: '请选择预约时段',
trigger: ['change', 'blur'],
1 year ago
}],
siteName: [{
required: true,
message: '请选择预约场地',
trigger: ['change', 'blur'],
}],
1 year ago
},
}
},
onReady() {
this.$refs.uForm.setRules(this.rules);
},
1 year ago
async onLoad(options) {
1 year ago
this.appoinementType = options.type ? options.type : ''
1 year ago
await this.getUser()
await this.getSites()
1 year ago
},
1 year ago
methods: {
getUser() {
this.$u.api.user().then(res => {
console.log("res", res)
this.form.idcard = res.user.idcard
this.$u.vuex('vuex_user', res.user)
})
1 year ago
},
1 year ago
// 日期
dateConfirm(e) {
console.log("date", e)
this.form.date = e.year + '-' + e.month + '-' + e.day
},
// 时间段
//点击吊起弹窗
openTime() {
this.$refs.timeslot.open()
},
1 year ago
//确认 时间段
1 year ago
confirmTime(e) {
// 如果是当天
// 开始时间要大于现在时间 结束时间不能小于现在时间
let nowTime = this.$moment().format("HH:mm")
console.log("nowtime", nowTime)
1 year ago
this.form.timeRange = e.start.hour + ":" + e.start.min + '~' + e.end.hour + ":" + e.end.min
this.form.start_time = e.start.hour + ":" + e.start.min
this.form.end_time = e.end.hour + ":" + e.end.min
},
// 场地
getSites() {
1 year ago
this.$u.api.otherConfig({
appointment_type_id: this.appoinementType
1 year ago
}).then(res => {
1 year ago
this.siteList = res.appointment.filter(item => item.status === 1)
if (this.siteList.length === 0) {
this.base.toast("当前没有场地可以预约")
} else {
this.siteList = this.siteList.sort((a, b) => a['sort'] - b['sort']);
1 year ago
}
1 year ago
})
},
siteConfirm(e) {
this.form.site = this.siteList[e[0]].id
1 year ago
this.form.siteName = this.siteList[e[0]].name
this.siteTotal = this.siteList[e[0]].total
if (this.siteList[e[0]].start_time) {
let _arr = this.siteList[e[0]].start_time.split(":")
this.hMin = parseInt(_arr[0])
let _arr1 = this.siteList[e[0]].end_time.split(":")
this.hMax = parseInt(_arr1[0])
console.log(this.hMin, this.hMax)
1 year ago
}
1 year ago
},
plateChange(val, index) {
console.log(val, this.plateIndex)
if (val.length >= 7) {
this.plateList[this.plateIndex]['plate'] = val.join("")
}
console.log(this.plateList[this.plateIndex])
},
openPlate(index) {
if (index === -1) {
this.showPlate = true
this.plateList.push({
plate: '',
show: false
})
this.plateIndex = this.plateList.length - 1
} else {
this.showPlate = true
this.plateNumber = this.plateList[index]['plate']
this.plateIndex = index
}
},
delPlate(index) {
this.plateList.splice(index, 1)
},
confirmPlate() {
console.log("this.plateList[this.plateIndex]", this.plateList[this.plateIndex])
console.log(this.plateList[this.plateIndex]['plate'])
console.log(this.plateList[this.plateIndex]['plate'].length < 7)
if (!this.plateList[this.plateIndex]) {
this.base.toast("请输入车牌号")
return
}
if (this.base.isNull(this.plateList[this.plateIndex]['plate']) ||
this.plateList[this.plateIndex]['plate'].length < 7) {
this.base.toast("请输入正确的车牌号")
return
}
this.showPlate = false
this.plateList[this.plateIndex]['show'] = true
this.plateIndex = -1
this.$refs.plates.panelReset()
this.plateNumber = ['苏', 'E', '', '', '', '', '']
1 year ago
},
// 同行人
addAccompany() {
this.accompanyShow = true
},
1 year ago
submitAccompany() {
if (this.base.isNull(this.accompanyObj.name)) {
this.base.toast("请输入陪同人姓名")
return
}
if (this.base.isNull(this.accompanyObj.idcard)) {
this.base.toast("请输入陪同人身份证")
return
} else {
if (!this.$u.test.idCard(this.accompanyObj.idcard)) {
this.base.toast("陪同人身份证不正确")
return
}
}
if (this.base.isNull(this.accompanyObj.mobile)) {
this.base.toast("请输入陪同人联系方式")
return
} else {
if (!this.$u.test.mobile(this.accompanyObj.mobile)) {
this.base.toast("陪同人联系方式不正确")
return
}
}
1 year ago
this.form.accompany.push(this.accompanyObj)
this.accompanyIndex = -1
this.accompanyObj = {}
1 year ago
this.accompanyShow = false
if (this.siteTotal && this.siteTotal > 0) {
if (this.form.accompany.length === this.siteTotal - 1) {
this.isTotal = true
}
1 year ago
}
1 year ago
},
delAccompany(index) {
this.form.accompany.splice(index, 1)
},
submit() {
1 year ago
let start_time = ''
let end_time = ''
// this.$u.api.scheduleCheck({
// site:this.siteList[e[0]].id
// }).then(res=>{
// console.log("res",res)
1 year ago
// })
1 year ago
this.$refs.uForm.validate(valid => {
1 year ago
if (valid) {
1 year ago
start_time = this.form.date + ' ' + this.form.start_time + ':00'
end_time = this.form.date + ' ' + this.form.end_time + ':00'
this.form.accompany_total = this.form.accompany.length
1 year ago
console.log("accompany_total", this.plateList, this.form.accompany_total)
1 year ago
let _plate = []
if (this.plateList.length > 0) {
if (this.plateList.length > this.form.accompany_total + 1) {
this.base.toast("车辆数量已经大于预约人数了")
return
}
this.plateList.map(item => {
_plate.push(item.plate)
})
}
this.form.plate = _plate.join(',')
console.log("plate", this.form)
1 year ago
// return
1 year ago
// if(this.isLocked){
// return
// }
// this.isLocked = true
1 year ago
this.$u.api.scheduleSave({
...this.form,
start_time: start_time,
end_time: end_time
1 year ago
}).then(res => {
1 year ago
this.newsSubscription()
1 year ago
})
1 year ago
} else {
console.log('验证失败');
// this.base.toast("验证失败")
}
});
1 year ago
},
// 订阅消息
newsSubscription() {
let that = this
uni.getSetting({
withSubscriptions: true, //是否获取用户订阅消息的订阅状态默认false不返回
success(res) {
console.log("resdfg", res)
if (res.subscriptionsSetting.mainSwitch) {
if (res.subscriptionsSetting.itemSettings && res.subscriptionsSetting.itemSettings[
'0WMaFZ_0FOS5gtxEAi-fM3pFcYPySRMwYFNASz9oig0'] === 'accept') {
// 用户已经订阅该消息模板,执行相应操作
that.base.toast("预约已提交", 1500, function() {
setTimeout(function() {
uni.redirectTo({
url: '/packages/mybook/index'
})
1 year ago
}, 500)
1 year ago
})
} else {
// 用户没有订阅该消息模板,显示订阅弹窗
uni.showModal({
title: '订阅消息',
content: '是否需要订阅预约结果消息',
success(res1) {
if (res1.confirm) {
uni.requestSubscribeMessage({
tmplIds: [
'0WMaFZ_0FOS5gtxEAi-fM3pFcYPySRMwYFNASz9oig0',
],
success(res) {
that.base.toast("预约已提交", 1500, function() {
setTimeout(function() {
uni.redirectTo({
url: '/packages/mybook/index'
})
1 year ago
}, 500)
1 year ago
})
},
fail(err) {
that.base.toast("预约已提交", 1500, function() {
setTimeout(function() {
uni.redirectTo({
url: '/packages/mybook/index'
})
1 year ago
}, 500)
1 year ago
})
}
})
} else {
that.base.toast("预约已提交", 1500, function() {
setTimeout(function() {
uni.redirectTo({
url: '/packages/mybook/index'
})
1 year ago
}, 500)
1 year ago
})
}
}
})
}
} else {
that.base.toast("预约已提交", 1500, function() {
setTimeout(function() {
uni.redirectTo({
url: '/packages/mybook/index'
})
1 year ago
}, 500)
1 year ago
})
// 用户尚未开启订阅消息总开关,建议提醒用户开启
}
}
});
1 year ago
},
1 year ago
}
}
</script>
<style scoped lang="scss">
1 year ago
.container {
padding: 30rpx;
width: 100%;
height: 100vh;
.cbg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
}
.wrap {
background: #fff;
position: relative;
padding: 35rpx;
border-radius: 30rpx;
padding-top: 0;
height: 100%;
overflow: scroll;
}
.slot-content {
padding: 30rpx;
padding-top: 20rpx;
&>view {
padding-top: 20rpx;
}
&-title {
text-align: center;
}
&-input {
height: 300rpx;
line-height: 1.6;
overflow: scroll;
}
&-btn {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30rpx 0;
&>view {
width: 40%;
text-align: center;
margin: 0 auto;
color: #fff;
background: linear-gradient(to right, #5e5fbc, #0d0398);
border-radius: 30rpx;
padding: 10rpx;
}
}
}
.form-btn {
width: 100%;
position: relative;
padding: 60rpx 0;
// z-index:9999;
&>view {
width: 70%;
text-align: center;
margin: 0 auto;
color: #fff;
background: linear-gradient(to right, #5e5fbc, #0d0398);
border-radius: 30rpx;
padding: 20rpx;
}
}
.modal {
::v-deep .u-drawer-bottom {
border-radius: 40rpx;
}
&-tip {
text-align: center;
padding: 30rpx;
font-size: 32rpx;
}
&-content {
// height: 400rpx;
padding: 0 30rpx;
}
}
1 year ago
}
</style>