关于element循环表单校验不生效问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于element循环表单校验不生效问题相关的知识,希望对你有一定的参考价值。
参考技术A 项目中有如下需求:可以添加一个列表 => 添加弹框 => 里面可以添加多个产品(产品里面可以添加多个对接人跟政策),所以数据结构应该如下
ruleForm:
companyName: '', // 公司名称
financialProduct: [
// 产品数组
productName: '', // 产品名称
dockingPerson: [
// 对接人
dockingName: '', // 联系人
],
financialPolicy: [
// 返利政策
makeWay: '', // 计提条件
]
]
,
但是在提交表单的时候验证不了,rule不起作用,因为数据是循环出来的,所以不起作用,解决办法如下:
<template>
<div class="addProduct_wrapper">
<!-- 中间内容区域 -->
<div class="center_content">
<el-form
ref="ruleForm"
:model="ruleForm"
label-width="80px"
:rules="rules">
<!-- 上方的列表 -->
<div class="basic_info">
<div class="info_box">
<el-form-item label="公司名称" prop="companyName">
<el-input placeholder="请输入公司的名称" v-model="ruleForm.companyName"></el-input>
</el-form-item>
</div>
<!-- 产品盒子 -->
<div class="product_box" v-for="(item, index) in ruleForm.financialProduct" :key="index">
<!-- 关闭按钮 -->
<span class="closeBtn" @click="delateProduct(index)" v-if="index !== 0">X</span>
<!-- 产品详情 -->
<div class="product_detail">
<el-form-item label="产品详情"></el-form-item>
<!-- name盒子 -->
<div class="name_box">
<div style="width: 300px;">
<el-form-item label="产品名称"
:prop="`financialProduct.$index.productName`"
:rules="financialProductRules.productName">
<el-input placeholder="请输入产品名称" v-model="item.productName"></el-input>
</el-form-item>
</div>
</div>
</div>
<!-- 对接人 -->
<div class="pickPeople">
<el-form-item label="对接人" label-width="95px"></el-form-item>
<div class="people_wrapper" v-for="(items, indexs) in ruleForm.financialProduct[index].dockingPerson" :key="indexs">
<div>
<el-form-item label="对接人"
:prop="`financialProduct.$index.dockingPerson.$indexs.dockingName`"
:rules="dockingPerson.dockingName"
>
<el-input placeholder="请输入联系人姓名" v-model="items.dockingName"></el-input>
</el-form-item>
</div>
</div>
<el-button type="primary" style="margin-left: 10px;" @click="addPickPeople(index)">添加对接人</el-button>
</div>
<!-- 政策 -->
<div class="rebatePolicy">
<el-form-item label="政策"></el-form-item>
<div class="rebate_box" v-for="(homes, indexHomes) in item.financialPolicy" :key="indexHomes">
<div>
<el-form-item label="政策"
:prop="`financialProduct.$index.financialPolicy.$indexHomes.makeWay`"
:rules="dockingPerson.makeWay"
>
<el-input placeholder="政策" v-model="homes.makeWay"></el-input>
</el-form-item>
</div>
<div>
<el-form-item label="">
<el-button type="primary" @click="delateRebatePolicy(item.financialPolicy, indexHomes)" v-if="editStatus !== 3">删除</el-button>
</el-form-item>
</div>
</div>
<el-button type="primary" style="margin-left: 10px;" @click="addRebatePolicy(index)" v-if="editStatus !== 3">添加政策</el-button>
</div>
</div>
<!-- 添加产品 -->
<el-button type="primary" style="margin: 20px 0px 30px 32px;" @click="addProduct()" v-if="editStatus !== 3">添加产品</el-button>
<div class="btn_submit" v-if="editStatus !== 3">
<el-form-item>
<el-button type="primary" @click="onSubmit(ruleForm)">确认保存</el-button>
<el-button @click="closeLayers">取消</el-button>
</el-form-item>
</div>
</el-form>
</div>
</div>
</template>
<script>
export default
data()
return
ruleForm:
companyName: '', // 公司名称
financialProduct: [
// 产品数组
productName: '', // 产品名称
dockingPerson: [
// 对接人
dockingName: '', // 联系人
],
financialPolicy: [
// 返利政策
makeWay: '', // 计提条件
]
]
,
rules:
companyName: [
required: true, message: '请输入活动名称', trigger: 'blur'
],
,
financialProductRules:
productName: [
required: true, message: '请输入产品名称', trigger: 'blur'
]
,
dockingPerson:
dockingName: [
required: true, message: '请输入联系人姓名', trigger: 'blur'
],
makeWay: [
required: true, message: '请输入计提条件', trigger: 'blur'
]
;
,
methods:
onSubmit(formName)
this.$refs['ruleForm'].validate(valid =>
if (valid)
console.log(this.ruleForm, '提交的表单');
else
return false;
);
,
,
;
</script>
<style scoped lang="scss">
</style>
Element-UI问题清单
目录
1、form下面只有一个input时回车键刷新页面
原因是触发了表单默认的提交行为,给el-form加上@submit.native.prevent就行了。
<el-form inline @submit.native.prevent>
<el-form-item label="订单号">
<el-input
v-model="query.orderNo"
:placeholder="输入订单号查询"
clearable
@keyup.enter.native="enterInput"
/>
</el-form-item>
</el-form>
2、表格固定列,最后一行显示不全
这种情况有时在宽度刚好处于临界值状态时会出现。因为固定列是独立于表格body动态计算高度的,出现了固定列高度小于表格高度所以造成最后一行被遮挡。
// 设置全局
.el-table__fixed-right {
height: 100% !important;
}
3、气泡确认框文档里的confirm事件不生效
版本:element-ui: “2.13.2”, vue: “2.6.10”
// 将confirm改为onConfirm
@onConfirm="onDeleteOrder(row.id)"
4、输入框用正则限制但绑定值未更新
有下面这么一段代码
<el-input
v-model="form.retailMinOrder"
placeholder="请输入"
onkeyup="value=value.replace(/[^\\d.]/g,'')"
/>
这样做虽然输入框的显示正确,但绑定的值并没有更新,将onkeyup改为oninput即可。
经过验证输入中文后v-model会失效,下面的方式更好一点。
<el-input
v-model="form.retailMinOrder"
placeholder="请输入"
@keyup.native="form.retailMinOrder=form.retailMinOrder.replace(/[^\\d.]/g,'')"
/>
5、去除type="number"输入框聚焦时的上下箭头
<el-input type="number" class="clear-number-input" />
/* 设置全局 */
.clear-number-input.el-input::-webkit-outer-spin-button,
.clear-number-input.el-input::-webkit-inner-spin-button {
margin: 0;
-webkit-appearance: none !important;
}
.clear-number-input.el-input input[type="number"]::-webkit-outer-spin-button,
.clear-number-input.el-input input[type="number"]::-webkit-inner-spin-button {
margin: 0;
-webkit-appearance: none !important;
}
.clear-number-input.el-input {
-moz-appearance: textfield;
}
.clear-number-input.el-input input[type="number"] {
-moz-appearance: textfield;
}
6、只校验表单其中一个字段
在一些用户注册场景中,提交整个表单前有时候我们会做一些单独字段的校验,例如发送手机验证码,发送时我们只需要校验手机号码这个字段,可以这样做。如果需要多个参数,将参数改为数组形式即可。
this.$refs['form'].validateField('mobile', valid => {
if (valid) {
// 发送验证码
}
});
7、弹窗重新打开时表单上次的校验信息未清除
有人会在open时在$nextTick里重置表单,建议在关闭时进行重置较好。
<el-dialog @close="onClose">
<el-form ref="form"></el-form>
</el-dialog>
// 弹窗关闭时重置表单
onClose() {
this.$refs['form'].resetFields();
}
8、表头与内容错位
// 全局设置
.el-table--scrollable-y .el-table__body-wrapper {
overflow-y: overlay !important;
}
9、表单多级数据结构校验问题
<el-form :model="form">
<el-form-item label="部门" prop="dept"></el-form-item>
<el-form-item label="姓名" prop="user.name"></el-form-item>
</el-form>
rules: {
'user.name': [{
required: true,
message: '姓名不能为空',
trigger: 'blur'
}]
}
10、表格跨分页多选
需加上row-key和reserve-selection即可。
<el-table row-key="id">
<el-table-column type="selection" reserve-selection></el-table-column>
</el-table>
11、根据条件高亮行并去除默认hover颜色
<el-table :row-class-name="tableRowClassName"></el-table>
tableRowClassName({ row }) {
return row.status === 2 ? 'highlight' : '';
}
// 设置全局
.el-table .highlight {
background-color: #b6e8fe;
&:hover > td {
background-color: initial !important;
}
td {
background-color: initial !important;
}
}
12、表单不想显示label但又想显示必填星号怎么办
// label给个空格即可
<el-form>
<el-table>
<el-table-column label="名称">
<template>
<el-form-item label=" ">
<el-input placeholder="名称不能为空" />
</el-form-item>
</template>
</el-table-column>
</el-table>
</el-form>
13、table内嵌input调用focus方法无效
无效
<el-table>
<el-table-column label="名称">
<template>
<el-input ref="inputRef" />
</template>
</el-table-column>
</el-table>
this.$refs['inputRef'].focus();
this.$refs['inputRef'][0].focus();
this.$refs['inputRef'].$el.children[0].focus();
有效
<el-input id="inputRef" />
document.getElementById('inputRef').focus();
14、表格内容超出省略
加个show-overflow-tooltip就可以了,还自带tooltip效果。
<el-table-column label="客户名称" prop="customerName" show-overflow-tooltip></el-table-column>
15、el-tree展开/收起所有节点
<el-tree ref="tree"></el-tree>
expandTree(expand = true) {
const nodes = this.$refs['tree'].store._getAllNodes();
nodes.forEach(node => {
node.expanded = expand;
});
}
以上是关于关于element循环表单校验不生效问题的主要内容,如果未能解决你的问题,请参考以下文章