| | |
| | | }, |
| | | swiperList: [], |
| | | timeOut: false, |
| | | times: 0 |
| | | times: 0, |
| | | currDate: '' |
| | | } |
| | | }, |
| | | onShow() { |
| | |
| | | success(result) { |
| | | var res = result.data.data |
| | | that.calendar = res.year + "年" + res.month + "月" + res.day + "日 " + res.hour + ":" + res.minute + ":" + res.second + " " + res.week |
| | | that.currDate = res.year + "/" + res.month + "/" + res.day |
| | | } |
| | | }) |
| | | }, |
| | |
| | | this.calendar = year + "年" + month + "月" + day + "日 " + hours + ":" + minutes + ":" + seconds + " " + weeks |
| | | }, |
| | | getDateFormat(value) { |
| | | var date = new Date();// 获取当前时间 |
| | | var date = new Date(this.currDate);// 获取当前时间 |
| | | date.setDate(date.getDate() + value);// 设置天数 -1 天 |
| | | var m = date.getMonth() + 1 |
| | | var d = date.getDate() |