123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <template>
- <view class="content">
- <view class="container">
- <!-- 日期列表 -->
- <scroll-view class="scroll-view_H b-t b-b" scroll-x>
- <block v-for="(item,index) in dateArr" :key="index">
- <div class="flex-box" @click="selectDateEvent(index,item)">
- <view class="date-box" :style="{color:index==dateActive?selectedTabColor:'#333'}">
- <text class="fontw">{{item.week}}</text>
- <text>{{item.date}}</text>
- </view>
- </div>
- </block>
- </scroll-view>
- <!-- 时间选项 -->
- <view class="time-box">
- <block v-for="(item,_index) in timeArr" :key="_index">
- <view class="item">
- <view class="item-box" :class="{'disable':item.disable,
- 'active':isMultiple?item.isActive:_index==timeActive}" :style="{color:isMultiple?item.isActive? selectedItemColor:'#333'
- :_index==timeActive?selectedItemColor:'#333'}" @click="selectTimeEvent(_index,item)">
- <text>{{item.seltime}}</text>
- <text class="all">{{item.disable?disableText:undisableText}}</text>
- </view>
- </view>
- </block>
- </view>
- </view>
- <view class="bottom">
- <view class="show-time" v-if="!isMultiple">
- 预约时间:{{orderDateTime}}
- </view>
- <button form-type="submit" @click="handleSubmit" class="submit-btn" :style="'background:'+ stylecolor">确认预约</button>
- </view>
- </view>
- </template>
- <script>
- import {
- initData,
- initTime,
- timeStamp,
- currentTime
- } from '../utils/date.js'
- export default {
- name: 'times',
- model: {
- prop: "showPop",
- event: "change"
- },
- props: {
- technicalId: {
- type: String,
- default: ""
- },
- buynowinfoid: {
- type: String,
- default: ""
- },
- isMultiple: { //是否多选
- type: Boolean,
- default: false
- },
-
- disableText: { //禁用显示的文本
- type: String,
- default: "已约满"
- },
- undisableText: { //未禁用显示的文本
- type: String,
- default: "可预约"
- },
- timeInterval: { // 时间间隔,小时为单位
- type: Number,
- default: 1
- },
- selectedTabColor: { // 日期栏选中的颜色
- type: String,
- default: "#ff1e02"
- },
- selectedItemColor: { // 时间选中的颜色
- type: String,
- default: "#ff1e02"
- },
- stylecolor:{
- type: String,
- default: '#ff1e02'
- },
- beginTime: {
- type: String,
- default: "09:00:00"
- },
- endTime: {
- type: String,
- default: "19:00:00"
- },
- appointTime: { // 预约的时间
- type: Array,
- default () {
- return []
- }
- }
- },
- watch: {
- appointTime(val) {
- if (val && val.length) {
- this.initOnload()
- }
- }
- },
- data() {
- return {
- orderDateTime: '暂无选择', // 选中时间
- orderTimeArr: {}, //多选的时间
- dateArr: [], //日期数据
- timeArr: [], //时间数据
- nowDate: "", // 当前日期
- dateActive: 0, //选中的日期索引
- timeActive: 0, //选中的时间索引
- timeQuanBeginIndex: 0, //时间段开始的下标
- selectDate: "", //选择的日期
- selectTime: "", //选择的时间
- timeQuanBegin: "", //时间段开始时间
- timeQuanEnd: "", //时间段结束时间
- }
- },
- mounted(props) {
- this.selectDate = this.nowDate = currentTime().date
- this.initOnload()
- },
- methods: {
- initOnload() {
- var _this = this;
- _this.dateArr = initData() // 日期栏初始化
- //_this.timeArr = initTime(_this.beginTime, _this.endTime, _this.timeInterval) //时间选项初始化
- _this.$request.post('Servicetime.index', {
- technicalId:_this.technicalId,
- buynowinfoid:_this.buynowinfoid,
- selectDate:_this.selectDate,
- samkey: (new Date()).valueOf()
- }).then(res => {
- if (res.errno == 0) {
- _this.timeArr = res.data;
- _this.timeQuanBegin = _this.timeQuanEnd = ""
- let isFullTime = true
- _this.timeArr.forEach((item, index) => {
- //判断是当前这一天,选中时间小于当前时间则禁用
- if (_this.selectDate == _this.nowDate && currentTime().time > item.time) {
- item.disable = true
- }
- // 将预约的时间禁用
- _this.appointTime.forEach(t => {
- let [date, time] = t.split(' ')
- if (date == _this.selectDate && item.time == time) {
- item.disable = true
- }
- })
- // 判断是否当前日期时间都被预约
- if (!item.disable) {
- isFullTime = false
- }
- })
- _this.orderDateTime = isFullTime ? "暂无选择" : _this.selectDate
- _this.timeActive = -1
- for (let i = 0, len = _this.timeArr.length; i < len; i++) {
- if (!_this.timeArr[i].disable) {
- _this.orderDateTime = `${_this.selectDate} ${_this.timeArr[i].seltime}`
- _this.timeActive = i
- return
- }
- }
- }
- })
- },
- // 日期选择事件
- selectDateEvent(index, item) {
- this.dateActive = index
- this.selectDate = item.date
- this.initOnload()
- },
- // 时间选择事件
- selectTimeEvent(index, item) {
- if (item.disable) return
- if (this.isMultiple) {
- item.isActive = !item.isActive
- this.timeArr = this.timeArr.slice()
- this.orderTimeArr[this.selectDate] = this.timeArr.reduce((prev, cur) => {
- cur.isActive && prev.push(cur.time)
- return prev
- }, [])
- } else {
- this.timeActive = index
- this.selectTime = item.seltime
- this.orderDateTime = `${this.selectDate} ${item.seltime}`
- }
- },
- // 选择时间段
- handleSelectQuantum(index, item) {
- if (item.disable) return
- function clearTime() {
- this.timeQuanBeginIndex = index
- this.timeQuanBegin = item.time
- this.timeQuanEnd = ""
- }
- if (!this.timeQuanBegin) {
- clearTime.call(this)
- return
- }
- if (!this.timeQuanEnd && this.timeQuanBegin) {
- let isDisble = false
- let start = this.timeQuanBeginIndex
- let end = index
- start > end && ([start, end] = [end, start])
- for (let i = start + 1; i < end; i++) {
- if (this.timeArr[i].disable) {
- isDisble = true
- clearTime.call(this)
- return
- }
- }
- if (!isDisble) {
- for (let i = start + 1; i < end; i++) {
- this.timeArr[i].isInclude = true
- }
- }
- this.timeQuanEnd = item.time
- return
- }
- if (this.timeQuanBegin && this.timeQuanEnd) {
- this.timeArr.forEach(t => {
- t.isInclude = false
- })
- clearTime.call(this)
- }
- },
- handleChange() {
- this.timeQuanBegin > this.timeQuanEnd && ([this.timeQuanBegin, this.timeQuanEnd] = [this.timeQuanEnd, this
- .timeQuanBegin
- ])
- },
- handleSubmit() {
- if (this.isMultiple) {
- let time = []
- for (let date in this.orderTimeArr) {
- this.orderTimeArr[date].forEach(time => {
- time.push(`${date} ${time}`)
- })
- }
- this.$emit('change', time)
- } else {
- this.$emit('change', this.orderDateTime)
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './pretty-times.scss';
- page {
- height: 100%;
- }
- .content {
- text-align: center;
- height: 100%;
- }
- /* 两个按钮 */
- .bottom {
- display: flex;
- flex-direction: row;
- position: fixed;
- bottom: 0;
- padding-top: 20rpx;
- padding-bottom: env(safe-area-inset-bottom);
- top: auto;
- left: 0px;
- width: 100%;
- background-color: #fff;
- }
- .show-time {
- width: 70%;
- height: 47px;
- color: #505050;
- background-color: rgba(255, 255, 255, 1);
- font-size: 15px;
- line-height: 47px;
- text-align: center;
- }
-
- .submit-btn {
- width: 200rpx;
- height: 70rpx;
- line-height: 70rpx;
- font-size: 28rpx;
- border-radius: 50rpx;
- color: #ffffff;
- align-items: center;
- }
- .fontw {
- font-weight: bold;
- }
- </style>
|