:rules="formValidate"的使用具体的使用方法
1、需要在el-form标签中添加:rules="formValidate"(为了可以验证)、 :model="queryForm"(可以找到验证的部分)
2、在t-form-item标签中添加 prop="acctNbr"
3、在data()的return中添加formValidate: {
acctNbr: {required: true, trigger: 'onblur', message: '请输入用户号码'},
},
4、在data中添加
const isLtEndDate = (rule, value, callback) => {
debugger
中间添加需要处理的东西
}