• el-table动态新增行及校验规则


    代码

    <template>
      <el-form ref="formName" :model="studentData">
        <el-table :data="studentData.studentList" stripe>
          <el-table-column label="姓名" align="left">
            <template slot-scope="scope">
              <el-form-item
                size="small"
                :prop="'studentList.' + scope.$index + '.name'"
                :rules="rules.name"
              >
                <el-input v-model="scope.row.name" placeholder="请输入姓名" />
              </el-form-item>
            </template>
          </el-table-column>
    
          <el-table-column label="性别">
            <template slot-scope="scope">
              <el-form-item
                size="small"
                :prop="'studentList.' + scope.$index + '.sex'"
                :rules="rules.sex"
              >
                <el-select v-model="scope.row.sex" placeholder="请选择性别">
                  <el-option label="男" value="1"></el-option>
                  <el-option label="女" value="0"></el-option>
                </el-select>
              </el-form-item>
            </template>
          </el-table-column>
    
          <el-table-column label="操作">
            <template slot-scope="scope">
              <el-button
                type="text"
                id="delete-btn"
                @click="deleteRow(scope.row, scope.$index)"
                >删除</el-button
              >
            </template>
          </el-table-column>
        </el-table>
        <div style="margin: 20px; text-align: right">
          <el-button @click="addRow" size="small">新增</el-button>
          <el-button @click="saveData('formName')" size="small">确定</el-button>
        </div>
      </el-form>
    </template>
    
    <script>
    export default {
      data() {
        return {
          studentData: {
            studentList: [
              {
                name: "王小虎",
                sex: "男",
              },
              {
                name: "Linda",
                sex: "女",
              },
            ],
          },
          //验证规则
          rules: {
            name: [
              {
                required: true,
                message: "请输入姓名",
                trigger: ["blur", "change"],
              },
            ],
            sex: [
              {
                required: true,
                message: "请选择性别",
                trigger: ["blur", "change"],
              },
            ],
          },
        };
      },
      methods: {
        // 添加一行
        addRow() {
          const item = {
            name: "",
            sex: "",
          };
          this.studentData.studentList.push(item);
        },
        // 删除一行
        deleteRow(row, index) {
          this.studentData.studentList.splice(index, 1);
        },
        saveData(formName) {
          this.$refs[formName].validate((valid) => {
            if (valid) {
              alert("submit!");
            } else {
              console.log("error submit!!");
              return false;
            }
          });
        },
      },
    };
    </script>
    <style scoped>
    .el-form {
      width: 60%;
      background: white;
      border: 1px solid gainsboro;
    }
    /deep/ .el-input {
      width: 100%;
    }
    </style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119

    效果

    点击新增,table新增一行,点击删除,删除所在行。若验证不通过,点击“确定”,提示如下图
    在这里插入图片描述

    分析

    1. 需要借助el-form的校验,el-table外层嵌套一层el-form,使用el-form的校验机制
    2. 由于每行都需要校验,借助scope.$index
    3. 给表单设置rules属性传入验证规则
    4. 给表单设置model属性传入表单数据
    5. 给表单项(Form-ltem)设置prop属性,值为需要校验的字段名

    参考

    参考1
    参考2
    参考3

  • 相关阅读:
    微信销售技巧和话术
    生产者消费者模型+仓储模型及Java自带的线程池
    流程图布局在项目中的实践
    手机app控制esp32-cam拍照上传,tcp和mqtt协议
    Vue(3.3.4)+three.js(0.161.0)实现3D可视化地图
    SpringCloud面试题(附源码)
    LeetCode【13】罗马数字转整数
    【Docker从入门到入土 2】Docker数据管理、网络通信和网络模式 1.0
    CGO 初步认知和基本数据类型转换
    sudo -u root whoami && ****无法用root权限执行后续命令的解决办法
  • 原文地址:https://blog.csdn.net/weixin_45609659/article/details/127750902