• element实现table当前行可编辑、保存


    <el-table
                  ref="multipleTable"
                  :data="tableData"
                  tooltip-effect="dark"
                  style=" 100%;"
                  :cell-style="changeColor"
                  :header-cell-style="changeHeaderColor"
                  :row-style="changRowColor"
                  @selection-change="handleSelectionChange"
          >
            <el-table-column type="selection" width="55"></el-table-column>
            <el-table-column class="td-th" label="行政区划" width="120">
              <template slot-scope="scope">
                <el-input v-model="scope.row.date" :disabled="isEditObj[scope.$index].a"></el-input>
              </template>
            </el-table-column>
            <el-table-column prop="address" label="问题类型">
              <template slot-scope="scope">
                <el-input v-model="scope.row.name" :disabled="isEditObj[scope.$index].a"></el-input>
              </template>
            </el-table-column>
            <el-table-column prop="address" label="操作" width="282px">
              <template slot-scope="scope">
                <div v-show="isEditObj[scope.$index].a">
                  <el-button type="text" icon="el-icon-s-claim" size="small" @click="editUserInfo(scope.$index)">编辑
                  </el-button>&nbsp;|
                  <el-button type="text" icon="el-icon-edit-outline" size="small" @click="details">详情
                  </el-button>&nbsp;|
                  <el-button type="text" icon="el-icon-delete" size="small">删除</el-button>
                </div>
                <div v-show="!isEditObj[scope.$index].a">
                  <el-button type="text" icon="el-icon-s-claim" size="small" @click="checkEditUserInfo(scope.$index)">保存
                  </el-button>&nbsp;|
                  <el-button type="text" icon="el-icon-edit-outline" size="small" @click="cancelEditUserInfo(scope.$index)">取消
                  </el-button>
                </div>
              </template>
            </el-table-column>
          </el-table>

    2、设置:isEditObj: [],

    3、

    mounted() {
            for (let i in this.tableData) {
              let a = "edit"+i;
              this.isEditObj.push({
                a:true
              });
            }
        },

    4、

    editUserInfo(index) {
            this.isEditObj[index].a = false;
          },
    checkEditUserInfo(index) {      //编辑用户信息
    this.isEditObj[index].a = true;
    },
    cancelEditUserInfo(index) {
    this.isEditObj[index].a = true;
    }
     
  • 相关阅读:
    【Networking】(转)一个非常好的epoll+线程池服务器Demo
    【算法】Logistic regression (逻辑回归) 概述
    【Linux】/dev/null 2>&1 详解
    单点登录与联合登录
    web项目报outmemory错误解决方案
    hadoop学习之HDFS
    ELK日志分析系统
    基于cookie共享的SSO中的遇到的问题
    oracle的隐式游标
    mysql截取字符串与reverse函数
  • 原文地址:https://www.cnblogs.com/keai/p/11152203.html
Copyright © 2020-2023  润新知