fix[Example]: fixed display_time always NaN bug (#2001)
This commit is contained in:
parent
abac07820a
commit
09a80688d2
|
@ -189,7 +189,7 @@ export default {
|
|||
this.$store.dispatch('tagsView/updateVisitedView', route)
|
||||
},
|
||||
submitForm() {
|
||||
this.postForm.display_time = parseInt(this.display_time / 1000)
|
||||
this.postForm.display_time = parseInt(this.postForm.display_time / 1000)
|
||||
console.log(this.postForm)
|
||||
this.$refs.postForm.validate(valid => {
|
||||
if (valid) {
|
||||
|
|
Loading…
Reference in New Issue