|
@@ -1,17 +1,17 @@
|
|
|
import dayjs from "dayjs";
|
|
|
-import {getUserWordTimes,formatDate} from "../../../utils/tools";
|
|
|
+import { getUserWordTimes, formatDate } from "../../../utils/tools";
|
|
|
Component({
|
|
|
/**
|
|
|
* 组件的属性列表
|
|
|
*/
|
|
|
properties: {
|
|
|
- isPartition:{
|
|
|
+ isPartition: {
|
|
|
type: Boolean,
|
|
|
},
|
|
|
pickerShow: {
|
|
|
type: Boolean,
|
|
|
- observer:function(val){ //弹出动画
|
|
|
- if(val){
|
|
|
+ observer: function (val) { //弹出动画
|
|
|
+ if (val) {
|
|
|
let animation = wx.createAnimation({
|
|
|
duration: 500,
|
|
|
timingFunction: "ease"
|
|
@@ -28,7 +28,7 @@ Component({
|
|
|
animationData: animation.export()
|
|
|
})
|
|
|
}, 0);
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
let animation = wx.createAnimation({
|
|
|
duration: 100,
|
|
|
timingFunction: "ease"
|
|
@@ -47,7 +47,7 @@ Component({
|
|
|
|
|
|
// 在picker滚动未停止前点确定,会使startValue数组各项归零,发生错误,这里判断并重新初始化
|
|
|
// 微信新增了picker滚动的回调函数,已进行兼容
|
|
|
- if(this.data.startValue&&this.data.endValue){
|
|
|
+ if (this.data.startValue && this.data.endValue) {
|
|
|
let s = 0, e = 0;
|
|
|
let conf = this.data.config;
|
|
|
|
|
@@ -61,13 +61,13 @@ Component({
|
|
|
e++;
|
|
|
}
|
|
|
});
|
|
|
- let tmp={
|
|
|
- hour:4,
|
|
|
- minute:5,
|
|
|
- second:6
|
|
|
+ let tmp = {
|
|
|
+ hour: 4,
|
|
|
+ minute: 5,
|
|
|
+ second: 6
|
|
|
}
|
|
|
let n = tmp[conf.column];
|
|
|
- if (s>=n || e>=n) {
|
|
|
+ if (s >= n || e >= n) {
|
|
|
this.initPick(this.data.config);
|
|
|
this.setData({
|
|
|
startValue: this.data.startValue,
|
|
@@ -90,11 +90,11 @@ Component({
|
|
|
// yearStart:2000,
|
|
|
// yearEnd:2100
|
|
|
},
|
|
|
- detached: function() {
|
|
|
+ detached: function () {
|
|
|
//console.log("dele");
|
|
|
},
|
|
|
- attached: function() {},
|
|
|
- ready: function() {
|
|
|
+ attached: function () { },
|
|
|
+ ready: function () {
|
|
|
this.readConfig();
|
|
|
this.initPick(this.data.config || {});
|
|
|
this.setData({
|
|
@@ -125,9 +125,9 @@ Component({
|
|
|
limitStartTime =
|
|
|
new Date().getTime() - 1000 * 60 * 60 * 24 * conf.dateLimit;
|
|
|
}
|
|
|
- if(conf.limitStartTime){
|
|
|
+ if (conf.limitStartTime) {
|
|
|
|
|
|
- limitStartTime = new Date(conf.limitStartTime.replace(/-/g,'/')).getTime();
|
|
|
+ limitStartTime = new Date(conf.limitStartTime.replace(/-/g, '/')).getTime();
|
|
|
}
|
|
|
|
|
|
if (conf.limitEndTime) {
|
|
@@ -159,56 +159,56 @@ Component({
|
|
|
});
|
|
|
},
|
|
|
//滚动开始
|
|
|
- handlePickStart:function(e){
|
|
|
+ handlePickStart: function (e) {
|
|
|
this.setData({
|
|
|
- isPicking:true
|
|
|
+ isPicking: true
|
|
|
})
|
|
|
},
|
|
|
//滚动结束
|
|
|
- handlePickEnd:function(e){
|
|
|
+ handlePickEnd: function (e) {
|
|
|
this.setData({
|
|
|
- isPicking:false
|
|
|
+ isPicking: false
|
|
|
})
|
|
|
},
|
|
|
- partitionTimeHandle(time){
|
|
|
+ partitionTimeHandle(time) {
|
|
|
let year = dayjs(time).year();
|
|
|
- let month = dayjs(time).month()+1;
|
|
|
+ let month = dayjs(time).month() + 1;
|
|
|
let day = dayjs(time).date();
|
|
|
let hour = dayjs(time).hour();
|
|
|
let minute = dayjs(time).minute();
|
|
|
|
|
|
let current = formatDate(year, month, day, hour, minute);
|
|
|
- const {start,restStart,restEnd,end} = getUserWordTimes();
|
|
|
+ const { start = "8:30", restStart = "12:00", restEnd = "13:30", end = "17:30" } = getUserWordTimes();
|
|
|
let startArr = start.split(':');
|
|
|
let endArr = end.split(':');
|
|
|
let restEndArr = restEnd.split(':');
|
|
|
|
|
|
- if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+start))){
|
|
|
- current = formatDate(year, month, day,parseInt(startArr[0]), parseInt(startArr[1]));
|
|
|
- }else if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+end))){
|
|
|
- current = formatDate(year, month, day,parseInt(endArr[0]), parseInt(endArr[1]));
|
|
|
- }else if(
|
|
|
- dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+restStart))
|
|
|
+ if (dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD') + start))) {
|
|
|
+ current = formatDate(year, month, day, parseInt(startArr[0]), parseInt(startArr[1]));
|
|
|
+ } else if (dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD') + end))) {
|
|
|
+ current = formatDate(year, month, day, parseInt(endArr[0]), parseInt(endArr[1]));
|
|
|
+ } else if (
|
|
|
+ dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD') + restStart))
|
|
|
&&
|
|
|
- dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+restEnd))
|
|
|
- ){
|
|
|
- current = formatDate(year, month, day,parseInt(restEndArr[0]), parseInt(restEndArr[1]));
|
|
|
+ dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD') + restEnd))
|
|
|
+ ) {
|
|
|
+ current = formatDate(year, month, day, parseInt(restEndArr[0]), parseInt(restEndArr[1]));
|
|
|
}
|
|
|
return current;
|
|
|
},
|
|
|
- onConfirm: function() {
|
|
|
+ onConfirm: function () {
|
|
|
//滚动未结束时不能确认
|
|
|
- if(this.data.isPicking){return}
|
|
|
+ if (this.data.isPicking) { return }
|
|
|
let startTime = new Date(this.data.startPickTime.replace(/-/g, "/"));
|
|
|
let endTime = new Date(this.data.endPickTime.replace(/-/g, "/"));
|
|
|
let lv = true;
|
|
|
this.triggerEvent("conditionaljudgment", {
|
|
|
startTime,
|
|
|
endTime,
|
|
|
- setLv:(v)=>{lv = v}
|
|
|
+ setLv: (v) => { lv = v }
|
|
|
});//条件判断
|
|
|
wx.nextTick(() => {
|
|
|
- if(!lv){return}
|
|
|
+ if (!lv) { return }
|
|
|
if (startTime <= endTime || !this.data.endDate) {
|
|
|
this.setData({
|
|
|
startTime,
|
|
@@ -216,8 +216,8 @@ Component({
|
|
|
});
|
|
|
let startArr = formatTime(startTime).arr;
|
|
|
let endArr = formatTime(endTime).arr;
|
|
|
- let format0 = function(num){
|
|
|
- return num<10?'0'+num:num
|
|
|
+ let format0 = function (num) {
|
|
|
+ return num < 10 ? '0' + num : num
|
|
|
}
|
|
|
|
|
|
let startTimeBack =
|
|
@@ -252,7 +252,7 @@ Component({
|
|
|
};
|
|
|
//触发自定义事件
|
|
|
//isPartition是否按地区判断工作开始结束时间
|
|
|
- if(this.data.isPartition){
|
|
|
+ if (this.data.isPartition) {
|
|
|
let startTimeInfor = this.partitionTimeHandle(time.startTime);
|
|
|
let endTimeInfor = this.partitionTimeHandle(time.endTime);
|
|
|
time.selectStartTime = time.startTime;
|
|
@@ -260,10 +260,10 @@ Component({
|
|
|
time.startTime = dayjs(startTimeInfor).format('YYYY-MM-DD HH:mm:ss');
|
|
|
time.endTime = dayjs(endTimeInfor).format('YYYY-MM-DD HH:mm:ss');
|
|
|
this.triggerEvent("setpickertime", time);
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.triggerEvent("setpickertime", time);
|
|
|
}
|
|
|
- this.triggerEvent("hidepicker", {},{});
|
|
|
+ this.triggerEvent("hidepicker", {}, {});
|
|
|
} else {
|
|
|
wx.showToast({
|
|
|
icon: "none",
|
|
@@ -272,22 +272,22 @@ Component({
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- hideModal: function(e) {
|
|
|
- this.triggerEvent("hidepicker", e.detail,{});
|
|
|
+ hideModal: function (e) {
|
|
|
+ this.triggerEvent("hidepicker", e.detail, {});
|
|
|
},
|
|
|
- changeStartDateTime: function(e) {
|
|
|
+ changeStartDateTime: function (e) {
|
|
|
let val = e.detail.value;
|
|
|
|
|
|
this.compareTime(val, "start");
|
|
|
},
|
|
|
|
|
|
- changeEndDateTime: function(e) {
|
|
|
+ changeEndDateTime: function (e) {
|
|
|
let val = e.detail.value;
|
|
|
this.compareTime(val, "end");
|
|
|
},
|
|
|
//比较时间是否在范围内
|
|
|
compareTime(val_, type) {
|
|
|
- const val = val_.map(it=>it.toString());
|
|
|
+ const val = val_.map(it => it.toString());
|
|
|
let h = val[3] ? this.data.HourList[val[3]] : "00";
|
|
|
let m = val[4] ? this.data.MinuteList[val[4]] : "00";
|
|
|
let s = val[5] ? this.data.SecondList[val[5]] : "00";
|
|
@@ -310,7 +310,7 @@ Component({
|
|
|
let year, month, day, hour, min, sec, limitDate;
|
|
|
let tempArr = []
|
|
|
|
|
|
- if (!this.data.dateLimit){
|
|
|
+ if (!this.data.dateLimit) {
|
|
|
limitDate = [
|
|
|
this.data.YearList[val[0]],
|
|
|
this.data.MonthList[val[1]],
|
|
@@ -333,11 +333,11 @@ Component({
|
|
|
} else {
|
|
|
limitDate = [
|
|
|
this.data.YearList[val[0]],
|
|
|
- this.data.MonthList[val[1]],
|
|
|
- this.data.DayList[val[2]],
|
|
|
- this.data.HourList[val[3]],
|
|
|
- this.data.MinuteList[val[4]],
|
|
|
- this.data.SecondList[val[5]]
|
|
|
+ this.data.MonthList[val[1]],
|
|
|
+ this.data.DayList[val[2]],
|
|
|
+ this.data.HourList[val[3]],
|
|
|
+ this.data.MinuteList[val[4]],
|
|
|
+ this.data.SecondList[val[5]]
|
|
|
]
|
|
|
|
|
|
}
|
|
@@ -355,7 +355,7 @@ Component({
|
|
|
this.setEndDate(year, month, day, hour, min, sec);
|
|
|
}
|
|
|
},
|
|
|
- getDays: function(year, month) {
|
|
|
+ getDays: function (year, month) {
|
|
|
let daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
|
if (month === 2) {
|
|
|
return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0
|
|
@@ -365,8 +365,8 @@ Component({
|
|
|
return daysInMonth[month - 1];
|
|
|
}
|
|
|
},
|
|
|
- initPick: function(initData) {
|
|
|
- const date = initData.initStartTime ? new Date(initData.initStartTime.replace(/-/g, '/')): new Date();
|
|
|
+ initPick: function (initData) {
|
|
|
+ const date = initData.initStartTime ? new Date(initData.initStartTime.replace(/-/g, '/')) : new Date();
|
|
|
const endDate = initData.initEndTime ? new Date(initData.initEndTime.replace(/-/g, '/')) : new Date();
|
|
|
// const startDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);
|
|
|
const startDate = date;
|
|
@@ -501,7 +501,7 @@ Component({
|
|
|
secondIdx
|
|
|
};
|
|
|
},
|
|
|
- setStartDate: function(year, month, day, hour, minute, second) {
|
|
|
+ setStartDate: function (year, month, day, hour, minute, second) {
|
|
|
let pickerDateArr = this.setPickerDateArr(
|
|
|
"start",
|
|
|
year,
|
|
@@ -540,7 +540,7 @@ Component({
|
|
|
this.data.SecondList[pickerDateArr.secondIdx]
|
|
|
});
|
|
|
},
|
|
|
- setEndDate: function(year, month, day, hour, minute, second) {
|
|
|
+ setEndDate: function (year, month, day, hour, minute, second) {
|
|
|
let pickerDateArr = this.setPickerDateArr(
|
|
|
"end",
|
|
|
year,
|