IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> Ant Design Vue 表格内编辑(附完整源码及效果图) -> 正文阅读

[JavaScript知识库]Ant Design Vue 表格内编辑(附完整源码及效果图)

效果图:

实现关键代码就是表单的 columns 属性对象下标的 scopedSlots:

scopedSlots: {
   customRender: ''
}

?实现完整代码:

<template>
  <div>
    <div class="table-wrapper">
      <!--每个列的宽度必须比列名总长度大才能使表格所有列对齐,留一个列不设置宽度-->
      <a-table :rowSelection="{selectedRowKeys: selectedRowKeys}" :columns="columns" :dataSource="tableData" bordered
        size="middle" :loading="tableLoading">

        <template v-for="col in customRenderList" v-slot:[col]="text, record, index">

          <div :key="col">
            <!-- includes 用来判断当前的输入类型 -->
            <a-input :read-only="readonlyArr.includes(col)" placeholder="请输入"
              v-if="record.editable && inputScopedSlots.includes(col)" :value="text"
              @change="e => handleChange(e.target.value, record.key, col)" />

            <a-date-picker placeholder="请选择时间" v-else-if="record.editable && dateScopedSlots.includes(col)"
              :value="text" @change="onChangeDate($event, record.key, col)" />

            <a-select placeholder="请选择" style="display: block;"
              v-else-if="record.editable && selectScopedSlots.includes(col)" :value="text"
              @change="onChangeSelect($event, record.key, col)">
              <a-select-option value="1小时">1小时</a-select-option>
              <a-select-option value="2小时">2小时</a-select-option>
            </a-select>

            <span v-else>{{text}}</span>
          </div>

        </template>
      </a-table>
    </div>
  </div>
</template>

<script>
  import Moment from 'moment'

  export default {
    name: "demo",
    data() {
      return {
        columns: [{
            title: '开始时间',
            align: "center",
            dataIndex: 'beginTime',
            width: 120,
            scopedSlots: {
              customRender: 'beginTime'
            }
          },
          {
            title: '结束时间',
            align: "center",
            dataIndex: 'endTime',
            width: 120,
            scopedSlots: {
              customRender: 'endTime'
            }
          },
          {
            title: '工时数',
            align: "center",
            dataIndex: 'workingHours',
            width: 120,
            scopedSlots: {
              customRender: 'workingHours'
            }
          },
          {
            title: '工作内容',
            align: "center",
            dataIndex: 'jobContent',
            width: 120,
            scopedSlots: {
              customRender: 'jobContent'
            }
          },
          {
            title: '产出内容上传',
            align: "center",
            dataIndex: 'produceUrl',
            width: 120,
            scopedSlots: {
              customRender: 'produceUrl'
            }
          }
        ],
        // 表格数据
        tableData: [{
          key: '',
          beginTime: '2019-12-17',
          endTime: '2019-12-17',
          workingHours: '1小时',
          jobContent: '123',
          produceUrl: '12421',
          editable: true
        }],

        // 每一列的插槽名 - 表格行内编辑用
        customRenderList: ['beginTime', 'endTime', 'workingHours', 'jobContent', 'produceUrl'],
        // 用来匹配插槽中显示input框
        inputScopedSlots: ['jobContent', 'produceUrl'],
        // 用来匹配插槽中显示date框
        dateScopedSlots: ['beginTime','endTime'],
        // 用来匹配插槽中显示select框
        selectScopedSlots: ['workingHours'],
        // 对于某些自动赋值的input框设为 只读
        readonlyArr: [''],

        // 表格loading
        tableLoading: false,
        // 表格选中key
        selectedRowKeys: []
      }
    },
    methods: {
      // input 输入change
      handleChange(value, rowKey, colName) {
        const newData = [...this.tableData];
        const target = newData.filter(item => rowKey === item.key)[0];
        if (target) {
          target[colName] = value;
          this.tableData = newData;
        }
      },
      // 日期框 change
      onChangeDate($event, rowKey, colName) {
        const newData = [...this.tableData];
        const target = newData.filter(item => rowKey === item.key)[0];
        if (target) {
          target[colName] = this.$dateformat($event, 'isoDate');
          this.tableData = newData;
        }
      },
      // select 框 change
      onChangeSelect($event, rowKey, colName) {
        const newData = [...this.tableData];
        const target = newData.filter(item => rowKey === item.key)[0];
        if (target) {
          target[colName] = $event;
          // 根据select框的值自动带出某个input的值 - 因为第三列列名为c
          $event === '1小时' ? target.c = '根据1小时带出的值' : target.c = '根据2小时带出的值'
          this.tableData = newData;
        }
      }
    }
  }
</script>

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-11 22:04:44  更:2022-03-11 22:05:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:56:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码