天天看点

Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题

Element运用之DateTimePicke<el-date-picker>初始值默认值设置及时间转化问题

需求:

点击更新信息按钮,弹出的对话框中的时间选择器默认选择当前时间(后端返回的是时间戳(this.plant.created_time))

Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题
Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题

注:手册里面说的 default-value,是当你点开选择器之后默认选中的时间(如下图)而不是初始红框中显示的时间。

Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题

因此本人使用v-model实现。

template:

Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题

data():

Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题

methods:

解释

请从生命周期created()开始看代码:首先记录后端传过来的时间戳格式化成标准时间的值,createdTimeFormat()是将时间戳转为标准时间的函数,之所以要用new Date()格式化一下是因为el-date-picker只接受传入Date()类型的值,exit()函数用于点击dialog对话框关闭按钮或点击取消按钮时调用,用于还原初始值。

Vue2.0 UI框架Element运用之DateTimePicker(el-date-picker)初始值及时间格式转化等细节问题

总结:遇到bug,结合文档,注意参数值格式。

继续阅读