这是一个时间控件,我们采用v-model 进行双向绑定
在renturn 里进行声明
进行添加的时候
时间控件直接得到的值是这种格式的
我们进行转换
formData.acceptDate = this.acceptDate ? this.acceptDate.format('YYYY-MM-DD HH:mm:ss') : null //时间转换
在赋值到控件上去的时候,也需要转换回去
this.acceptDate=moment(this.payModel.acceptDate) //转换赋值到控件上
需要导入这个
import moment from 'moment'