bi/vue/plop-templates/utils.js

10 lines
155 B
JavaScript
Raw Normal View History

2022-01-26 16:40:50 +08:00
exports.notEmpty = name => {
return v => {
if (!v || v.trim === '') {
return `${name} 不能为空`
} else {
return true
}
}
}