提交 90af74eb 编写于 作者: P Pan

perf[Example]: refine example demo

上级 fd9ad898
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
<el-col :span="10"> <el-col :span="10">
<el-form-item label-width="120px" label="Publush Time:" class="postInfo-container-item"> <el-form-item label-width="120px" label="Publush Time:" class="postInfo-container-item">
<el-date-picker v-model="postForm.display_time" type="datetime" format="yyyy-MM-dd HH:mm:ss" placeholder="Select date and time" /> <el-date-picker v-model="displayTime" type="datetime" format="yyyy-MM-dd HH:mm:ss" placeholder="Select date and time" />
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -154,6 +154,18 @@ export default { ...@@ -154,6 +154,18 @@ export default {
}, },
lang() { lang() {
return this.$store.getters.language return this.$store.getters.language
},
displayTime: {
// set and get is useful when the data
// returned by the back end api is different from the front end
// back end return => "2013-06-25 06:59:25"
// front end need timestamp => 1372114765000
get() {
return (+new Date(this.postForm.display_time))
},
set(val) {
this.postForm.display_time = new Date(val)
}
} }
}, },
created() { created() {
...@@ -189,7 +201,6 @@ export default { ...@@ -189,7 +201,6 @@ export default {
this.$store.dispatch('tagsView/updateVisitedView', route) this.$store.dispatch('tagsView/updateVisitedView', route)
}, },
submitForm() { submitForm() {
this.postForm.display_time = parseInt(this.postForm.display_time / 1000)
console.log(this.postForm) console.log(this.postForm)
this.$refs.postForm.validate(valid => { this.$refs.postForm.validate(valid => {
if (valid) { if (valid) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册