el-table树形表格表单验证(列表生成序号)
程序员文章站
2022-04-09 16:14:51
树形表格表单验证预览树形列表生成序号首先需要生成一个序号用来确定表单验证的目标row,通过广度优先遍历,以1,1.1,1.1.1的规则对树形列表生成确定唯一值的索引,因为列表自身可以做curd,因此需...
树形表格表单验证预览
树形列表生成序号
首先需要生成一个序号用来确定表单验证的目标row,通过广度优先遍历,以1,1.1,1.1.1的规则对树形列表生成确定唯一值的索引,因为列表自身可以做curd,因此需要每次列表的item增加或减少时重新调用生成索引的方法。
setindex = (data) => { let queue = [...data]; let loop = 0; while (queue.length > 0) { loop++ [...queue].foreach((child, i) => { queue.shift() if (loop == 1) { child.customindex = i + 1 + ""; child.currentindex = i; } if (child.children && child.children.length > 0) { child.datatype = 1 for (let ci = 0; ci < child.children.length; ci++) { child.children[ci].currentindex = ci child.children[ci].customindex = child.customindex + "." + (ci + 1) } queue.push(...child.children) } else { child.datatype = 2 } }) } } const rows = [ { id: "1", date: "2016-05-02", name: "王小虎1", address: "上海市普陀区金沙江路 1518 弄", children: [ { name: "233", customindex: "1.1", children: [{name: "9"}] }, { name: "7771", customindex: "1.2", children: [ { name: "9" }, { name: "9", }] } ] }, { id: "2", date: "2016-05-04", name: "王小虎2", address: "上海市普陀区金沙江路 1517 弄", children: [] }, ] setindex(rows)
表单校验
要想实现对表格的表单验证,需要用form-item将整个表格包裹,然后在以子集的方式将每一列用form-item包裹。
<el-form ref="form" :model="form" label-width="80px" :rules="rules"> <el-form-item label-width="0" prop="rows"> <el-table> </el-table> </el-form-item> </el-form>
<el-table-column prop="name" label="姓名" sortable width="180"> <template v-slot="{$index, row}"> {{`rows${getpathbykey(row.customindex,"customindex",form.rows)}.name`}} <el-form-item label-width="0" :rules="rules.name" :prop="`${row.customindex!=='tempindex'?`rows${getpathbykey(row.customindex,'customindex',form.rows)}.name`:''}`"> <el-input v-model="row.name"></el-input> </el-form-item> </template> </el-table-column>
实现方式,表单校验本质是对于目标数据的路径查找,当el-form-item 上的prop匹配不到正确的目标是的时候就不能正常触发校验
因此,需要记录每一个row上面的属性路径,即实现记录每一行中属性(name,address)路径的方法。
getpathbykey = (value, key, arr) => { let temppath = []; let realpath = "" try { function getnodepath(node) { temppath.push(node.currentindex); //找到符合条件的节点,通过throw终止掉递归 if (node[key] === value) { temppath.foreach((v, i) => { if (i == 0) { realpath += "." + v } else { realpath += `.children.${v}` } }) // temppath = temppath.join(",") throw ("got it!"); // return; } if (node.children && node.children.length > 0) { for (var i = 0; i < node.children.length; i++) { getnodepath(node.children[i]); } //当前节点的子节点遍历完依旧没找到,则删除路径中的该节点 temppath.pop(); } else { //找到叶子节点时,删除路径当中的该叶子节点 temppath.pop(); } } for (let i = 0; i < arr.length; i++) { getnodepath(arr[i]); } } catch (e) { return realpath; } },
将每一列需要验证的item,路径查找好之后,form就可以具体监控到所有的表格输入,并触发正确的验证了,如图:
到此这篇关于el-table树形表格表单验证(列表生成序号)的文章就介绍到这了,更多相关el-table树形表格表单验证内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!