時間picker(當月)

木魚叮咚發表於2020-10-24

// pickerOptions: {
// onPick: ({ maxDate, minDate }) => {
// this.choiceDate = minDate.getTime();
// if (maxDate) {
// this.choiceDate = “”;
// }
// },
// disabledDate: (time) => {
// const self = this;
// if (!!self.choiceDate) {
// const startDay =
// (new Date(self.choiceDate).getDate() - 1) * 24 * 3600 * 1000;

  //       const endDay =
  //         (new Date(
  //           new Date(self.choiceDate).getFullYear(),

  //           new Date(self.choiceDate).getMonth() + 1,

  //           0
  //         ).getDate() -
  //           new Date(self.choiceDate).getDate()) *
  //         24 *
  //         3600 *
  //         1000;

  //       let minTime = self.choiceDate - startDay;

  //       let maxTime = self.choiceDate + endDay;

  //       return time.getTime() < minTime || time.getTime() > maxTime;
  //     }
  //   },
  // },

相關文章