标签:message 时间格式 type 操作 下拉 highlight 验证 时间选择 require
一,
1,日期时间选择器,验证时type应为‘data‘类型;
{ required: true, type: ‘date‘, message: ‘请选择日期‘, trigger: ‘blur‘ }
2,(将后台获取到的字符串格式的数据放入new Data()中,问题就解决了)日期时间选择器,是将时间转为标准时间格式进行处理的,这里要注意在进行赋值操作时记得把后台获取的的字符串的日期时间给转为标准时间后再进行赋值操作
this.formValidate.beginDate = new Date(row.beginTime)
二,
1,select及下拉多选选择器,验证时type应为‘array‘类型
{ type: ‘array‘, required: true, message: ‘请选择下游通道‘ }
标签:message 时间格式 type 操作 下拉 highlight 验证 时间选择 require
原文地址:https://www.cnblogs.com/duhui/p/12108638.html