mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
185 lines
5.6 KiB
JavaScript
185 lines
5.6 KiB
JavaScript
Vue.component("datetime-input", {
|
|
props: ["v-name", "v-timestamp"],
|
|
mounted: function () {
|
|
let that = this
|
|
teaweb.datepicker(this.$refs.dayInput, function (v) {
|
|
that.day = v
|
|
that.hour = "23"
|
|
that.minute = "59"
|
|
that.second = "59"
|
|
that.change()
|
|
})
|
|
},
|
|
data: function () {
|
|
let timestamp = this.vTimestamp
|
|
if (timestamp != null) {
|
|
timestamp = parseInt(timestamp)
|
|
if (isNaN(timestamp)) {
|
|
timestamp = 0
|
|
}
|
|
} else {
|
|
timestamp = 0
|
|
}
|
|
|
|
let day = ""
|
|
let hour = ""
|
|
let minute = ""
|
|
let second = ""
|
|
|
|
if (timestamp > 0) {
|
|
let date = new Date()
|
|
date.setTime(timestamp * 1000)
|
|
|
|
let year = date.getFullYear().toString()
|
|
let month = this.leadingZero((date.getMonth() + 1).toString(), 2)
|
|
day = year + "-" + month + "-" + this.leadingZero(date.getDate().toString(), 2)
|
|
|
|
hour = this.leadingZero(date.getHours().toString(), 2)
|
|
minute = this.leadingZero(date.getMinutes().toString(), 2)
|
|
second = this.leadingZero(date.getSeconds().toString(), 2)
|
|
}
|
|
|
|
return {
|
|
timestamp: timestamp,
|
|
day: day,
|
|
hour: hour,
|
|
minute: minute,
|
|
second: second,
|
|
|
|
hasDayError: false,
|
|
hasHourError: false,
|
|
hasMinuteError: false,
|
|
hasSecondError: false
|
|
}
|
|
},
|
|
methods: {
|
|
change: function () {
|
|
// day
|
|
if (!/^\d{4}-\d{1,2}-\d{1,2}$/.test(this.day)) {
|
|
this.hasDayError = true
|
|
return
|
|
}
|
|
let pieces = this.day.split("-")
|
|
let year = parseInt(pieces[0])
|
|
|
|
let month = parseInt(pieces[1])
|
|
if (month < 1 || month > 12) {
|
|
this.hasDayError = true
|
|
return
|
|
}
|
|
|
|
let day = parseInt(pieces[2])
|
|
if (day < 1 || day > 32) {
|
|
this.hasDayError = true
|
|
return
|
|
}
|
|
|
|
this.hasDayError = false
|
|
|
|
// hour
|
|
if (!/^\d+$/.test(this.hour)) {
|
|
this.hasHourError = true
|
|
return
|
|
}
|
|
let hour = parseInt(this.hour)
|
|
if (isNaN(hour)) {
|
|
this.hasHourError = true
|
|
return
|
|
}
|
|
if (hour < 0 || hour >= 24) {
|
|
this.hasHourError = true
|
|
return
|
|
}
|
|
this.hasHourError = false
|
|
|
|
// minute
|
|
if (!/^\d+$/.test(this.minute)) {
|
|
this.hasMinuteError = true
|
|
return
|
|
}
|
|
let minute = parseInt(this.minute)
|
|
if (isNaN(minute)) {
|
|
this.hasMinuteError = true
|
|
return
|
|
}
|
|
if (minute < 0 || minute >= 60) {
|
|
this.hasMinuteError = true
|
|
return
|
|
}
|
|
this.hasMinuteError = false
|
|
|
|
// second
|
|
if (!/^\d+$/.test(this.second)) {
|
|
this.hasSecondError = true
|
|
return
|
|
}
|
|
let second = parseInt(this.second)
|
|
if (isNaN(second)) {
|
|
this.hasSecondError = true
|
|
return
|
|
}
|
|
if (second < 0 || second >= 60) {
|
|
this.hasSecondError = true
|
|
return
|
|
}
|
|
this.hasSecondError = false
|
|
|
|
let date = new Date(year, month - 1, day, hour, minute, second)
|
|
this.timestamp = Math.floor(date.getTime() / 1000)
|
|
},
|
|
leadingZero: function (s, l) {
|
|
s = s.toString()
|
|
if (l <= s.length) {
|
|
return s
|
|
}
|
|
for (let i = 0; i < l - s.length; i++) {
|
|
s = "0" + s
|
|
}
|
|
return s
|
|
},
|
|
resultTimestamp: function () {
|
|
return this.timestamp
|
|
},
|
|
nextYear: function () {
|
|
let date = new Date()
|
|
date.setFullYear(date.getFullYear()+1)
|
|
this.day = date.getFullYear() + "-" + this.leadingZero(date.getMonth() + 1, 2) + "-" + this.leadingZero(date.getDate(), 2)
|
|
this.hour = this.leadingZero(date.getHours(), 2)
|
|
this.minute = this.leadingZero(date.getMinutes(), 2)
|
|
this.second = this.leadingZero(date.getSeconds(), 2)
|
|
this.change()
|
|
},
|
|
nextDays: function (days) {
|
|
let date = new Date()
|
|
date.setTime(date.getTime() + days * 86400 * 1000)
|
|
this.day = date.getFullYear() + "-" + this.leadingZero(date.getMonth() + 1, 2) + "-" + this.leadingZero(date.getDate(), 2)
|
|
this.hour = this.leadingZero(date.getHours(), 2)
|
|
this.minute = this.leadingZero(date.getMinutes(), 2)
|
|
this.second = this.leadingZero(date.getSeconds(), 2)
|
|
this.change()
|
|
},
|
|
nextHours: function (hours) {
|
|
let date = new Date()
|
|
date.setTime(date.getTime() + hours * 3600 * 1000)
|
|
this.day = date.getFullYear() + "-" + this.leadingZero(date.getMonth() + 1, 2) + "-" + this.leadingZero(date.getDate(), 2)
|
|
this.hour = this.leadingZero(date.getHours(), 2)
|
|
this.minute = this.leadingZero(date.getMinutes(), 2)
|
|
this.second = this.leadingZero(date.getSeconds(), 2)
|
|
this.change()
|
|
}
|
|
},
|
|
template: `<div>
|
|
<input type="hidden" :name="vName" :value="timestamp"/>
|
|
<div class="ui fields inline" style="padding: 0; margin:0">
|
|
<div class="ui field" :class="{error: hasDayError}">
|
|
<input type="text" v-model="day" placeholder="YYYY-MM-DD" style="width:8.6em" maxlength="10" @input="change" ref="dayInput"/>
|
|
</div>
|
|
<div class="ui field" :class="{error: hasHourError}"><input type="text" v-model="hour" maxlength="2" style="width:4em" placeholder="时" @input="change"/></div>
|
|
<div class="ui field">:</div>
|
|
<div class="ui field" :class="{error: hasMinuteError}"><input type="text" v-model="minute" maxlength="2" style="width:4em" placeholder="分" @input="change"/></div>
|
|
<div class="ui field">:</div>
|
|
<div class="ui field" :class="{error: hasSecondError}"><input type="text" v-model="second" maxlength="2" style="width:4em" placeholder="秒" @input="change"/></div>
|
|
</div>
|
|
<p class="comment">常用时间:<a href="" @click.prevent="nextHours(1)"> 1小时 </a> <span class="disabled">|</span> <a href="" @click.prevent="nextDays(1)"> 1天 </a> <span class="disabled">|</span> <a href="" @click.prevent="nextDays(3)"> 3天 </a> <span class="disabled">|</span> <a href="" @click.prevent="nextDays(7)"> 1周 </a> <span class="disabled">|</span> <a href="" @click.prevent="nextDays(30)"> 30天 </a> <span class="disabled">|</span> <a href="" @click.prevent="nextYear()"> 1年 </a> </p>
|
|
</div>`
|
|
}) |