calendar.vue组件
/**
* 确认按钮
*/
confirm() {
this.setEmit('confirm')
if(this.range){
const { before, after } = this.cale.multipleStatus
if(before && !after){
return uni.showToast({
title: '请选择结束时间',
icon: 'none',
mask: false
})
}
}
this.close()
},
1 个回复
1***@qq.com (作者)
移动端每次碰到选择时间范围的情况产品都要说怕用户不知道,之前是拆开成两个,这次懒得动直接改源码了