Files
vxe-table/examples/plugins/table/validators.ts
xuliangzhan de1a45e3c8 重构校验
2023-07-22 21:21:42 +08:00

13 lines
267 B
TypeScript

import { VXETable } from '../../../packages/all'
// 自定义全局的格式化处理函数
VXETable.validators.mixin({
mobile: {
cellValidatorMethod ({ cellValue }) {
if (!cellValue) {
return new Error('手机号不正确')
}
}
}
})