Vue2+ElementUI的el-table实现新增数据行与删除的功能

31 篇文章 0 订阅
23 篇文章 0 订阅

Vue2+ElementUI的el-table实现新增数据行与删除的功能

1. 代码

TableIndex.vue如下

<template>
  <div>
    <div>
      <el-button @click="add" class="filter-item" plain type="primary">新增</el-button>
      <el-button @click="batchDelete" class="filter-item" plain type="danger">删除</el-button>
    </div>

    <el-table :data="tableData.records" :key="tableKey" size="small"
              @selection-change="onSelectChange"
              border fit row-key="id" ref="table" style="width: 100%;" v-loading="loading">
      <el-table-column align="center" type="selection" width="40px" column-key="selectionId"
                       :reserve-selection="true"/>

      <el-table-column v-if="false">
        <template slot-scope="scope">
          <el-input v-model="scope.row.id"></el-input>
        </template>
      </el-table-column>
      <el-table-column label="标题"
                       align="center" prop="blockTitle"
                       width="300px">
        <template slot-scope="scope">
          <el-input v-model="scope.row.blockTitle"></el-input>
        </template>
      </el-table-column>
      <el-table-column label="类型"
                       align="center" prop="blockType"
                       width="120px">
        <template slot-scope="scope">
          <el-select v-model="scope.row.blockType">
            <el-option label="表单" value="0"/>
            <el-option label="表格" value="1"/>
            <el-option label="树表" value="2"/>
            <el-option label="甘特图" value="3"/>
          </el-select>
        </template>
      </el-table-column>
      <el-table-column label="数据源" :show-overflow-tooltip="true"
                       align="center" prop="blockUrl"
                       width="">
        <template slot-scope="scope">
          <el-input v-model="scope.row.blockUrl"></el-input>
        </template>
      </el-table-column>
      <el-table-column label="是否有效"
                       align="center" prop="izValidate"
                       width="150px">
        <template slot-scope="scope">
          <el-radio v-model="scope.row.izValidate" label="1" default></el-radio>
          <el-radio v-model="scope.row.izValidate" label="0"></el-radio>
        </template>
      </el-table-column>
      <el-table-column
        :label="$t('table.operation')" align="center" column-key="operation"
        class-name="small-padding fixed-width"
        width="100px">
        <template slot-scope="{ row }">
          <i @click="singleDelete(row)" class="el-icon-delete table-operation" title="删除" style="color: #f50;"/>
        </template>
      </el-table-column>
    </el-table>
  </div>
</template>

<script>
import elDragDialog from '@/directive/el-drag-dialog'
import {v4 as uuidv4} from 'uuid';

export default {
  name: "TableIndex",
  directives: {elDragDialog},
  filters: {},
  data() {
    return {
      selections: [],
      tableData: {
        records: [],
        total: 0
      },
      tableKey: 0,
      loading: false,
    };
  },
  computed: {},
  watch: {},
  mounted() {

  },
  methods: {
    add() {
      // 添加新行
      this.tableData.records.push({id: uuidv4(), blockTitle: '', blockType: '', blockUrl: '', izValidate: '1'});
    },
    // 单行删除方法
    singleDelete(row) {
      console.log(row)
      this.tableRowsDelete(new Array(row.id))
    },
    //批量删除方法
    batchDelete() {
      if (!this.selections.length) {
        this.$message({
          message: "请先选择需要删除的数据",
          type: "warning"
        });
        return;
      }
      //获取要删除的记录id
      const delIds = this.selections.map(row => row.id);
      this.tableRowsDelete(delIds)
    },
    // 删除表格数据行的方(用于单行及批量删除按钮操作)
    tableRowsDelete(delIds) {
      this.$confirm('此操作将永久删除, 是否继续?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        //根据id删除
        this.tableData.records = this.tableData.records.filter(item => !delIds.includes(item.id));
        this.$refs.table.clearSelection();
        this.$message({
          type: 'success',
          message: '删除成功!'
        });
      }).catch(() => {
        this.clearSelections();
        this.$message({
          type: 'info',
          message: '已取消删除'
        });
      });
    },
    //当选择项发生变化时会触发该事件
    onSelectChange(selection) {
      this.selections = selection;
    },
    //清空表格选择
    clearSelections() {
      this.$refs.table.clearSelection();
    }
  }
};
</script>
<style lang="scss" scoped></style>

2. 效果

  1. 新增按钮添加数据行

在这里插入图片描述

  1. 删除按钮提示是否继续删除

在这里插入图片描述

如果你想在VueElement UI中实现搜索并添加数据功能,可以按照以下步骤进: 1. 创建一个表单,其中包含一个输入框和一个“添加”按钮。 ```html <el-form :model="form" label-width="80px"> <el-form-item label="搜索"> <el-input v-model="keyword"></el-input> </el-form-item> <el-form-item> <el-button type="primary" @click="addData">添加</el-button> </el-form-item> </el-form> ``` 2. 在Vue实例中定义data属性,包括搜索关键字和表单数据。 ```javascript data() { return { keyword: '', form: { name: '', age: '', // 其他表单字段 }, dataList: [ { name: '张三', age: 20 }, { name: '李四', age: 25 }, // 其他数据项 ] } } ``` 3. 定义一个方法来搜索数据。 ```javascript methods: { searchData() { // 根据关键字过滤数据 this.filteredData = this.dataList.filter(item => { return item.name.indexOf(this.keyword) !== -1 }) }, // 其他方法 } ``` 4. 定义一个方法来添加数据。 ```javascript addData() { // 将表单数据添加到数据列表中 this.dataList.push(this.form) // 清空表单数据 this.form = { name: '', age: '', // 其他表单字段 } // 重新搜索数据 this.searchData() } ``` 5. 在mounted钩子中初始化数据。 ```javascript mounted() { this.searchData() } ``` 6. 在模板中显示搜索结果。 ```html <el-table :data="filteredData"> <el-table-column prop="name" label="姓名"></el-table-column> <el-table-column prop="age" label="年龄"></el-table-column> <!-- 其他表格列 --> </el-table> ``` 这样,当你输入搜索关键字并点击“添加”按钮时,表单数据将被添加到数据列表中,并且搜索结果将包括新的数据项。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值