|
@@ -459,6 +459,12 @@
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
+ this.chooseDay = new Date()
|
|
|
+ // this.chooseTime = new Date()
|
|
|
+ let time = new Date(this.chooseDay.getTime() + 30*60*1000)
|
|
|
+ this.chooseTime = this.showAll(time.getHours()) +':' + this.showAll(time.getMinutes())
|
|
|
+ console.log(this.chooseTime,'this.chooseTime')
|
|
|
+ // this.morenDay = date.getFullYear() + date.getMonth()+ data.getDate()
|
|
|
let clientWidth = document.documentElement.clientWidth;
|
|
|
let pageLimt;
|
|
|
if (clientWidth > 2260) {
|
|
@@ -511,10 +517,9 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- handleSubmit() {
|
|
|
-
|
|
|
+ showAll(num) {
|
|
|
+ return num > 9 ? num + '' : '0' + num
|
|
|
},
|
|
|
-
|
|
|
datetimePickerErr() {},
|
|
|
reloadList() {
|
|
|
this.reloading = true;
|