Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(u-form-item): 支持自定义校验对象 #1293

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion uview-ui/components/u-form-item/u-form-item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@
}
},
props: {
// 传递需要校验的对象
target: {
type: Object,
},
// input的label提示语
label: {
type: String,
Expand Down Expand Up @@ -273,7 +277,12 @@
// 校验数据
validation(trigger, callback = () => {}) {
// 检验之间,先获取需要校验的值
this.fieldValue = this.parent.model[this.prop];
if (this.target) {
this.fieldValue = this.target[this.prop];
} else {
this.fieldValue = this.parent.model[this.prop];
}

// blur和change是否有当前方式的校验规则
let rules = this.getFilteredRule(trigger);
// 判断是否有验证规则,如果没有规则,也调用回调方法,否则父组件u-form会因为
Expand Down