zoukankan      html  css  js  c++  java
  • 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;
    }
     
  • 相关阅读:
    PHP strcmp,strnatcmp,strncmp函数的区别
    PHP echo,print_r(expression),var_dump(expression)区别
    PHP包含文件语句include和require的区别
    PHP魔术变量__METHOD__,__FUNCTION__的区别
    解决margin重叠的问题
    冒牌、选择、插入排序算法
    == 和 === 的区别
    Javascript常见浏览器兼容问题
    浏览器常见兼容性问题汇总
    JS中replace()用法举例
  • 原文地址:https://www.cnblogs.com/keai/p/11152203.html
Copyright © 2011-2022 走看看