Skip to content

Commit

Permalink
fix: 修复选择输入列校验无效问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Kchengz committed Apr 7, 2023
1 parent de0fb40 commit 471a237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/KFormItem/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export default {
},
validationSubform() {
// 验证动态表格
if (this.record.type === "batch") {
if (["batch", "selectInputList"].includes(this.record.type)) {
if (!this.$refs.inputItem) return true;
return this.$refs.inputItem.validationSubform();
}
Expand Down

0 comments on commit 471a237

Please sign in to comment.