请问ant-design-vue如何把table和form结合做成表格内表单验证
<a-form-model
ref="ruleForm"
:model="dataSource[0]"
:rule="rule">
<a-table
:rowKey='(record,index)=>index'
:customRow="exitCustomRow"
:columns="columns"
:data-source="dataSource"
size="small">
<span slot="serialNumber" slot-scope="text,record,index">
{{index+1}}
</span>
<a-form-model-item
slot="newApartId"
slot-scope="text, record">
<a-input v-model="record.newApartId">
</a-input>
</a-form-model-item>
</a-table>
</a-form-model>
exitCustomRow(record, index) {
return {
on:{
click: event => {
console.log(index)
}
}
}
},
本来想着不断改变绑定的model做提示,但感觉这样的方法蠢,并且界面容易出错,请问各位大佬有什么结合的案例能给我参考一下吗
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论