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;
    }
     
  • 相关阅读:
    restful规范以及drf框架
    vue的第三方插件,vuex,axios,element-ui ,jq+bs
    路由,生命周期钩子函数,数据间的交互,全局配置js与css
    实例成员补充,项目环境配置以及vue组件
    vue指令实例成员
    初识vue
    django中如何暴露后端任意文件资源
    django中间件以及请求生命流程图
    wraps修饰器
    cookie与session
  • 原文地址:https://www.cnblogs.com/keai/p/11152203.html
Copyright © 2011-2022 走看看