form rules校验:动态table中input校验

news2025/1/19 10:29:07

问题描述

在这里插入图片描述

使用antd的form-model的rules表单校验
那如图表格中的input如何也一同校验?

如图可见规则是一个数据结构为二维数组的可动态生成的表格,如何对其中的input进行校验?

一维数组表格校验分析

先分析简单点的问题,表格是数组,且input是放在插槽里的,如何进行校验?
代码中editParam为表单校验的整体对象
editParam.jobSetInfoDetails为表格用到的数组
表单对象
校验方式

二维数组表格校验分析

校验方式

个人理解猜测

我猜测表单校验就是对form所绑定对象key->value的校验
prop是要让你找到校验目标属性的key
input v-model绑定的是value
数组的只要通过index找到目标对象的属性,通过拼接字符串的方式放到prop里即可

代码

我本身不喜欢在笔记中直接贴全文代码的行为,但是这个表单比较简单,且参考性不错(有动态表格的校验),就直接贴全了

<template>
  <div class="main">
    <a-card title="新建规则" :bordered="true" class="edit-box">
      <a-button slot="extra" href="#" type="primary" @click="submit">确定创建</a-button>
      <p class="subTitle">规则基本信息</p>

      <a-divider style="height: 2px; margin-top: 10px; margin-bottom: 10px" />

      <a-form-model
        ref="ruleForm"
        :model="editParam"
        class="form-box"
        labelAlign="left"
        :rules="rules"
      >
        <a-row>
          <a-col>
            <a-form-model-item
              class="form_lineHeight"
              prop="name"
              label="规则名称"
              :label-col="{ span: 4 }"
              :wrapper-col="{ span: 6 }"
            >
              <a-input allowClear placeholder="" v-model="editParam.name" />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col>
            <a-form-model-item
              class="form_lineHeight"
              prop="operator"
              label="规则创建人"
              :label-col="{ span: 4 }"
              :wrapper-col="{ span: 6 }"
            >
              <a-input allowClear placeholder="" v-model="editParam.operator" />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col>
            <a-form-model-item
              class="form_lineHeight"
              prop="comment"
              label="规则说明"
              :label-col="{ span: 4 }"
              :wrapper-col="{ span: 15 }"
            >
              <a-input allowClear placeholder="" v-model="editParam.comment" />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col>
            <a-form-model-item
              class="form_lineHeight"
              prop="impact"
              label="告警影响"
              :label-col="{ span: 4 }"
              :wrapper-col="{ span: 15 }"
            >
              <a-input allowClear placeholder="" v-model="editParam.impact" />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col>
            <a-form-model-item
              class="form_lineHeight"
              prop="manual"
              label="告警后处理措施"
              :label-col="{ span: 4 }"
              :wrapper-col="{ span: 15 }"
            >
              <a-input allowClear placeholder="" v-model="editParam.manual" />
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col>
            <a-form-model-item
              class="form_lineHeight"
              prop="owner"
              label="告警责任人或联系人"
              :label-col="{ span: 4 }"
              :wrapper-col="{ span: 15 }"
            >
              <a-input allowClear placeholder="" v-model="editParam.owner" />
            </a-form-model-item>
          </a-col>
        </a-row>

        <div class="mid">
          <p class="subTitle">规则编写</p>

          <a-divider style="height: 2px; margin-top: 10px; margin-bottom: 10px" />
          <div
            class="table"
            v-for="(item, i) in editParam.alertLogicalFilterConfig.alertFilterConfigs"
            :key="i"
          >
            <div>
              <span>规则{{ i + 1 }}</span>
              <a-button class="addRulesButton" @click="addRulesTable(i)" icon="plus" size="small">
              </a-button>
              <a-button class="addRulesButton" @click="delRulesTable(i)" icon="minus" size="small">
              </a-button>
            </div>

            <el-table :data="item" :border="true">
              <el-table-column label="序号" type="index" :index="1" width="50"> </el-table-column>
              <el-table-column label="字段名称">
                <template slot-scope="scope">
                  <a-select v-model="scope.row.key" style="width: 160px">
                    <a-select-option value="area"> 数据中心 </a-select-option>
                    <a-select-option value="nodeIp"> 节点 </a-select-option>
                    <a-select-option value="nodeAlias"> 节点别名 </a-select-option>
                    <a-select-option value="summary"> 摘要 </a-select-option>
                    <a-select-option value="category"> 管理对象类别 </a-select-option>
                    <a-select-option value="kind"> 管理对象组件 </a-select-option>
                    <a-select-option value="type"> 管理对象 </a-select-option>
                  </a-select>
                </template>
              </el-table-column>
              <el-table-column label="条件">
                <template slot-scope="scope">
                  <a-select v-model="scope.row.filterType" style="width: 160px">
                    <a-select-option value="等于"> 等于 </a-select-option>
                    <a-select-option value="不等于"> 不等于 </a-select-option>
                    <a-select-option value="包含"> 包含 </a-select-option>
                    <a-select-option value="不包含"> 不包含 </a-select-option>
                    <a-select-option value="正则匹配"> 正则匹配 </a-select-option>
                    <a-select-option value="正则反向匹配"> 正则反向匹配 </a-select-option>
                  </a-select>
                </template>
              </el-table-column>
              <el-table-column label="值域">
                <template slot-scope="scope">
                  <a-form-model-item
                    :prop="
                      'alertLogicalFilterConfig.alertFilterConfigs.' +
                      i +
                      '.' +
                      scope.$index +
                      '.val'
                    "
                    class="rulesval"
                    :rules="{ required: true, message: '必填', trigger: 'blur' }"
                  >
                    <a-input v-model="scope.row.val"></a-input>
                  </a-form-model-item>
                </template>
              </el-table-column>

              <el-table-column label="操作">
                <template slot-scope="scope">
                  <el-button size="mini" @click="addRules(i, scope.$index)">添加</el-button>
                  <el-button size="mini" type="danger" @click="deleteRules(i, scope.$index)"
                    >删除</el-button
                  >
                </template>
              </el-table-column>
            </el-table>
          </div>
        </div>

        <div class="bottom">
          <p class="subTitle">执行操作</p>

          <a-divider style="height: 2px; margin-top: 10px; margin-bottom: 10px" />
          <el-table :data="editParam.jobSetInfoDetails" class="tasksTable" :border="true">
            <el-table-column label="任务id">
              <template slot-scope="scope">
                <a-form-model-item
                  :prop="'jobSetInfoDetails.' + scope.$index + '.jobSetId'"
                  class="rulesval"
                  :rules="{ required: true, message: '必填', trigger: 'blur' }"
                >
                  <a-input v-model="scope.row.jobSetId"></a-input>
                </a-form-model-item>
              </template>
            </el-table-column>
            <el-table-column label="任务名称">
              <template slot-scope="scope">
                <a-form-model-item
                  :prop="'jobSetInfoDetails.' + scope.$index + '.jobSetName'"
                  class="rulesval"
                  :rules="{ required: true, message: '必填', trigger: 'blur' }"
                >
                  <a-input v-model="scope.row.jobSetName"></a-input>
                </a-form-model-item>
              </template>
            </el-table-column>
            <el-table-column label="任务描述">
              <template slot-scope="scope">
                <a-form-model-item
                  :prop="'jobSetInfoDetails.' + scope.$index + '.jobSetDescription'"
                  class="rulesval"
                  :rules="{ required: true, message: '必填', trigger: 'blur' }"
                >
                  <a-input v-model="scope.row.jobSetDescription"></a-input>
                </a-form-model-item>
              </template>
            </el-table-column>
            <el-table-column label="任务类型">
              <template slot-scope="scope">
                <a-select v-model="scope.row.jobType" style="width: 160px">
                  <a-select-option value="zz"> 自证 </a-select-option>
                  <a-select-option value="bc"> 拨测 </a-select-option>
                </a-select>
              </template>
            </el-table-column>
            <el-table-column label="操作">
              <template slot-scope="scope">
                <el-button size="mini" @click="addTasks(scope.$index)">添加</el-button>
                <el-button
                  v-show="showDelTasksButton"
                  size="mini"
                  type="danger"
                  @click="deleteTasks(scope.$index)"
                  >删除</el-button
                >
              </template>
            </el-table-column>
          </el-table>
          <a-button class="addTasksButton" @click="addTasks(0)" v-if="showAddTasksButton"
            >添加任务</a-button
          >
        </div>
      </a-form-model>
    </a-card>
  </div>
</template>

<script>
//import
import { addAlertJobTriggerRule } from '@/views/eventList/rulesManage/rulesManageApi.js'
export default {
  components: {},
  data() {
    return {
      editParam: {
        id: undefined, //规则编号
        name: undefined, //规则名称
        operator: this.$store.state.user.username, //规则创建人
        comment: undefined, //规则说明
        impact: undefined, //告警影响
        manual: undefined, //告警后处理措施
        owner: undefined, //告警责任人或联系人
        alertLogicalFilterConfig: {
          alertFilterConfigs: [
            //这里为了便于后续理解,只是注释暂不删除
            [
              {
                key: 'area', //字段名称
                filterType: '等于', //条件
                val: '', //值域
              },
            ],
          ],
          operateType: '||',
        },

        jobSetInfoDetails: [
          {
            jobSetId: '',
            jobSetName: '',
            jobSetDescription: '',
            jobType: 'bc',
          },
        ],
      },
      rules: {
        name: [{ required: true, message: '必填', trigger: 'change' }],
        operator: [{ required: true, message: '必填', trigger: 'change' }],
        comment: [{ required: true, message: '必填', trigger: 'change' }],
        impact: [{ required: true, message: '必填', trigger: 'change' }],
        owner: [{ required: true, message: '必填', trigger: 'change' }],
      },
      showDelTasksButton: true,
    }
  },
  computed: {
    showAddTasksButton() {
      return this.editParam.jobSetInfoDetails.length == 0
    },
  },
  watch: {
    'editParam.tasks'(value) {
      if (value.length == 1) {
        this.showDelTasksButton = false
      } else {
        this.showDelTasksButton = true
      }
    },
  },
  methods: {
    async submit() {
      this.$refs.ruleForm.validate(async (valid) => {
        if (valid) {
          //发起创建规则请求
          let res = await addAlertJobTriggerRule(this.editParam)
          //规则创建成功
          if (res.code == 0) {
            this.$success({
              title: '规则创建成功',
              okText: '确定',
              okType: 'primary',

              onOk() {
                window.location.href = 'about:blank'
                window.close()
              },
            })
          }
        } else {
          console.log('error submit!!')
          return false
        }
      })
    },
    addRulesTable(tableIndex) {
      let tmp = [
        {
          key: 'area', //字段名称
          filterType: '等于', //条件
          val: '', //值域
        },
      ]
      this.editParam.alertLogicalFilterConfig.alertFilterConfigs.splice(tableIndex + 1, 0, tmp)
    },
    delRulesTable(tableIndex) {
      this.editParam.alertLogicalFilterConfig.alertFilterConfigs.splice(tableIndex, 1)
    },
    addRules(tableIndex, ruleIndex) {
      let tmp = {
        key: 'area', //字段名称
        filterType: '等于', //条件
        val: '', //值域
      }
      this.editParam.alertLogicalFilterConfig.alertFilterConfigs[tableIndex].splice(
        ruleIndex + 1,
        0,
        tmp
      )
    },
    deleteRules(tableIndex, ruleIndex) {
      this.editParam.alertLogicalFilterConfig.alertFilterConfigs[tableIndex].splice(ruleIndex, 1)
      //如果该规则是规则表格中最后一条,则删除该规则表格
      if (this.editParam.alertLogicalFilterConfig.alertFilterConfigs[tableIndex].length == 0) {
        this.editParam.alertLogicalFilterConfig.alertFilterConfigs.splice(tableIndex, 1)
      }
    },
    addTasks(index) {
      let tmp = {
        taskId: '插入的任务id',
        taskName: '任务名称',
        describe: '任务描述',
        uri: '任务URI',
      }
      this.editParam.jobSetInfoDetails.splice(index + 1, 0, tmp)
    },
    deleteTasks(index) {
      this.editParam.jobSetInfoDetails.splice(index, 1)
    },
  },
  created() {},
  //生命周期 - 挂载完成(可以访问DOM元素)
  mounted() {},
}
</script>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/93249.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Redis持久化RDB的三种触发机制及其优缺点

一、前言 大家都知道Redis是内存数据库&#xff0c;所有的数据都存放在内存中&#xff0c;如果没有配置持久化&#xff0c;当我们关闭redis服务器再重启后数据就全丢失了&#xff0c;于是需要开启redis的持久化功能&#xff0c;将数据保存到磁盘上&#xff0c;保证在redis重启…

全景也要更清晰,基于RK3588核心板的8K全景相机方案【飞凌嵌入式】

内容来源&#xff1a;飞凌嵌入式官网www.forlinx.com伴随着虚拟现实技术&#xff08;简称VR&#xff09;的热潮&#xff0c;VR全景影像开始兴起&#xff0c;全景相机市场也迎来了高速发展。近年来&#xff0c;360全景相机几乎成为了数码潮人和vlog拍摄者手中必不可少的一款产品…

Ghidra逆向工具之旅与二进制代码分析【3】

逆向工程中涉及到多种多样的工具(例如IDA Pro,Angr等),熟练使用这些工具可以化繁为简,使得程序分析工作得以顺利开展。本系列文章系统地介绍众多逆向工具中的一种——Ghidra,它是由美国国家安全局(NSA,National Security Agency)的研究理事会为 NSA 的网络安全任务开发…

手把手教你成为荣耀开发者:应用管理指南

荣耀开发者服务平台是荣耀面向开发者的统一生态入口&#xff0c;通过聚合周边内外部系统&#xff0c;分全球多站点部署&#xff0c;为全球开发者提供业务全生命周期的商业支撑服务&#xff0c;拥有应用分发、智慧服务、开放能力、HONOR Connect等众多业务等您来合作。 应用管理…

满足条件 -C++条件判断

引言 小森在玩MC(我的世界) 的时候,一般都玩生存,所以你们应该知道 :要想致富先 撸树,这个玩法 可是非常原始,但必须在平原或者森林里,若是一开始就在沙漠里可想而知,没有一点资源,怎么玩下去 ,当然走出去 要是下一个区域 里有树那很好, 没树继续.若在此之前发生了饱腹度一点一…

Linux中使用交叉编译、二进制分析工具链

交叉编译,顾名思义,就是要生成在其它平台上运行的目标代码。例如,现在个人电脑上的CPU都基于X86/X86-64架构。但很多手机或其它嵌入式设备的处理器则可能是基于ARM架构的。如果要在个人电脑上开发嵌入式应用,就要进行交叉编译。本文主要演示在Linux环境下使用交叉编译及二进…

Qt 模型视图编程之表头设置

背景 Qt 模型视图编程中模型定义了标准接口对数据进行访问&#xff0c;可根据需求继承对应的抽象模型类来实现自定义的数据模型。一个基本的数据模型至少要实现以下虚函数&#xff1a; ①&#xff0e;rowCount&#xff1a;行数&#xff0c;返回要显示多少行&#xff1b; ②&am…

Django 图书借书系统

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言 一、Django是什么&#xff1f; 二、django安装 1.安装 2.需要的pip list 安装 三、django 建立图书馆管理系统 1.建立项目 建立项目locallibrary 2.参加APP 建…

[附源码]Python计算机毕业设计高校医疗健康服务系统的设计与实现Django(程序+LW)

该项目含有源码、文档、程序、数据库、配套开发软件、软件安装教程 项目运行 环境配置&#xff1a; Pychram社区版 python3.7.7 Mysql5.7 HBuilderXlist pipNavicat11Djangonodejs。 项目技术&#xff1a; django python Vue 等等组成&#xff0c;B/S模式 pychram管理等…

java计算机毕业设计基于安卓Android的婚恋相亲app

项目介绍 网络的广泛应用给生活带来了十分的便利。所以把网上婚恋相亲系统与现在网络相结合,利用java技术建设网上婚恋相亲系统APP,实现网上婚恋相亲系统的信息化。则对于进一步提高网上婚恋相亲系统发展,丰富网上婚恋相亲系统经验能起到不少的促进作用。 网上婚恋相亲系统APP能…

气泡水位计的安装方法与安装注意事项

气泡水位计它由活塞泵产生的压缩空气流经测量管和气泡室&#xff0c;进入被测的水体中&#xff0c;测量管中的静压力与气泡室上的水位高度成正比。那么接下来就请跟随小编的脚步一起来了解下气泡水位计的安装方法与安装注意事项的相关内容。 气泡式水位计的安装方法: 1.气管安装…

JDK的使用——Java开发第一步

JDK的使用——Java开发第一步 1 什么是JDK JDK是 Java 语言的软件开发工具包&#xff0c;是整个java开发的核心&#xff0c;使用Java开发第一步就是要在计算机上安装JDK。 JDK主要包含三个部分&#xff1a; 1 JAVA开发工具(jdk\bin) 2 基础开发库(jdk\jre\lib) 3 基础开发库…

Codeforces Round #762 (Div. 3) E. MEX and Increments

https://codeforces.com/contest/1619/problem/E 翻译&#xff1a; Dmitry有一个&#x1d45b;非负整数数组&#x1d44e;1&#xff0c;&#x1d44e;2&#xff0c;…&#xff0c;&#x1d44e;&#x1d45b;。 在一次操作中&#xff0c;Dmitry可以选择任意索引&#x1d457…

SAP ABAP——数据类型(六)【预定义基本数据类型详解】

&#x1f482;作者简介&#xff1a; THUNDER王&#xff0c;一名热爱财税和SAP ABAP编程以及热爱分享的博主。目前于江西师范大学会计学专业大二本科在读&#xff0c;同时任汉硕云&#xff08;广东&#xff09;科技有限公司ABAP开发顾问。在学习工作中&#xff0c;我通常使用偏后…

编译robotics_transformer

编译tensor2robot GitHub - google-research/tensor2robot: Distributed machine learning infrastructure for large-scale robotics research 2.编译proto文件为python文件 robotrobot:~/ref$ mkdir protoc_3.3 robotrobot:~/ref$ cd protoc_3.3/ robotrobot:~/ref/protoc…

三、HTTP 接口自动化测试

HTTP 接口自动化测试3.1 HttpLibrary.HTTP 库的使用安装导入3.1.1 Create Http Context3.2 RequestsLibrary 库的使用安装导入3.2.1 Create Session 和 Get Request1. Create Session2. Get Request3.2.2 Post Request3.2.3 RequestsLibrary 库的其他关键字3.3 RESTinstance 库…

RK3568平台开发系列讲解(摄像头篇)使用 Camera 的步骤

🚀返回专栏总目录 文章目录 一、使用 Camera 的步骤二、使用 SurfaceView 预览显示 Camera 数据沉淀、分享、成长,让自己和他人都能有所收获!😄 📢 本篇将介绍如何使用Camera。 一、使用 Camera 的步骤 说下 Camera 的操作步骤,后面给出实例,请结合代码理解分析: 获…

[附源码]Python计算机毕业设计高校体侧管理系统Django(程序+LW)

该项目含有源码、文档、程序、数据库、配套开发软件、软件安装教程 项目运行 环境配置&#xff1a; Pychram社区版 python3.7.7 Mysql5.7 HBuilderXlist pipNavicat11Djangonodejs。 项目技术&#xff1a; django python Vue 等等组成&#xff0c;B/S模式 pychram管理等…

Jetpack Compose中的Modifier

Modifier的基本使用 Modifier修饰符是Jetpack Compose中用来修饰组件的&#xff0c;提供常用的属性&#xff0c;写布局时几乎所有Composable组件的大部分属性都可以用Modifier 来修饰。官方在开发Compose UI时&#xff0c;最初尝试过将所有属性全部以函数参数的形式提供&#…

[附源码]Node.js计算机毕业设计高校学生宿舍管理信息系统Express

项目运行 环境配置&#xff1a; Node.js最新版 Vscode Mysql5.7 HBuilderXNavicat11Vue。 项目技术&#xff1a; Express框架 Node.js Vue 等等组成&#xff0c;B/S模式 Vscode管理前后端分离等等。 环境需要 1.运行环境&#xff1a;最好是Nodejs最新版&#xff0c;我…