Vue Element Table表格双击单元格进行单元格编辑-学习笔记

项目中需要双击table单元格,进行某单元格的内容编辑工作,具体实现代码如下:

<template>
  <div v-show="isShowPanel" class="attributeContainer">
    <el-table
      max-height="320"
      highlight-current-row
      size="small"
      border
      :data="tableData"
      @cell-dblclick="cellEdit"
      class="tableStyle"
    >
      <el-table-column show-overflow-tooltip prop="id" label="ID"> </el-table-column>
      <el-table-column prop="unit" label="单元">
        <template slot-scope="scope">
          <el-input ref="unit" v-if="scope.row.isEdit" clearable v-model="scope.row.unit"
            @keyup.enter.native="onBlur(scope.row, scope.column)" @blur="onBlur(scope.row, scope.column)"></el-input>
          <span v-else>{{ scope.row.unit }}</span>
        </template>
      </el-table-column>
      <el-table-column prop="roomnum" label="门牌号">
        <template slot-scope="scope">
          <el-input ref="roomnum" v-if="scope.row.isEdit" clearable v-model="scope.row.roomnum"
            @keyup.enter.native="onBlur(scope.row, scope.column)" @blur="onBlur(scope.row, scope.column)"></el-input>
          <span v-else>{{ scope.row.roomnum}}</span>
        </template>
      </el-table-column>
    </el-table>
    <el-button @click="saveData" style="width: 50%; margin-top: 10px" size="mini">保存属性</el-button
    >
  </div>
</template>

<script>
export default {
  name: "AttributePanel",
  data() {
    return {
      isShowPanel: false,
      address: "",
      tableData: [],
    };
  },
  props: {},
  created() {},
  mounted() {
    this.$bus.$on("showAttributePanel", (features) => {
      this.initTabel(features);
    });
  },
  methods: {
    showPanel() {
      this.isShowPanel = true;
    },
    // 单元格双击事件--重点
    cellEdit(row, column) {
      // 将单元格变为输入框
      row.isEdit = true
      // 聚焦到单元格
      setTimeout(() => {
        this.$refs[column.property].focus()
      }, 10)
    },
    // 失去焦点时关闭输入框,即隐藏单元格--重点
    onBlur(row){
      row.isEdit = false;
    },
    initTabel(features) {
      if (features.entities.values.length > 0) {
        this.tableData = [];
        features.entities.values.forEach((f) => {
          this.tableData.push({
            id: f.id,
            unit: "",
            isEdit: false,
            roomnum: "",
          });
        });
      }
    },
  },
};
</script>
<style scoped>
.attributeContainer {
  color: white;
  border-radius: 4px;
  width: 370px;
  height: 500px;
  position: absolute;
  top: 20%;
  right: 350px;
  background: #030829bf;
  overflow: hidden;
  z-index: 2;
}
.tableStyle{
  width: 100%;
  padding:0px 5px,
}
/* .attributeContainer /deep/  .el-table, .el-table__expanded-cell {
    background-color: transparent;
}

.attributeContainer /deep/ .el-table tr {
    background-color: transparent!important;
}
.attributeContainer /deep/  .el-table--enable-row-transition .el-table__body td, .el-table .cell{
    background-color: transparent;
} */
.inputContainer {
  display: flex;
  margin: 10px;
  align-items: center;
}
.addressContainer{
  width: 100%;
}
.title{
  width: 25%;
}
.inputClass{
  width: 75%;
}
</style>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
使用 Vue.jsElement UI 实现表格单元格编辑的步骤如下: 1. 导入 Element UI 的表格和表单组件: ```vue <template> <div> <el-table :data="tableData" style="width: 100%"> <!-- 表格列定义 --> </el-table> </div> </template> <script> import { ElTable, ElTableColumn, ElInput } from 'element-ui' export default { components: { ElTable, ElTableColumn, ElInput }, data() { return { tableData: [ { name: '张三', age: 20 }, { name: '李四', age: 25 }, { name: '王五', age: 30 } ], editIndex: -1 } } } </script> ``` 2. 在表格中的每一行定义一个编辑按钮,点击编辑按钮后将当前行进入编辑状态: ```vue <el-table :data="tableData" style="width: 100%"> <el-table-column label="姓名"> <template slot-scope="scope"> <template v-if="editIndex !== scope.$index"> {{ scope.row.name }} </template> <template v-else> <el-input v-model="scope.row.name"></el-input> </template> </template> </el-table-column> <el-table-column label="年龄"> <template slot-scope="scope"> <template v-if="editIndex !== scope.$index"> {{ scope.row.age }} </template> <template v-else> <el-input v-model="scope.row.age"></el-input> </template> </template> </el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <template v-if="editIndex !== scope.$index"> <el-button type="primary" size="small" @click="edit(scope.$index)">编辑</el-button> </template> <template v-else> <el-button type="success" size="small" @click="save(scope.$index)">保存</el-button> <el-button type="warning" size="small" @click="cancel(scope.$index)">取消</el-button> </template> </template> </el-table-column> </el-table> ``` 3. 定义编辑按钮的点击事件和保存、取消按钮的点击事件: ```vue export default { // 省略其他代码 methods: { edit(index) { this.editIndex = index }, save(index) { this.editIndex = -1 }, cancel(index) { this.editIndex = -1 } } } ``` 完整代码如下: ```vue <template> <div> <el-table :data="tableData" style="width: 100%"> <el-table-column label="姓名"> <template slot-scope="scope"> <template v-if="editIndex !== scope.$index"> {{ scope.row.name }} </template> <template v-else> <el-input v-model="scope.row.name"></el-input> </template> </template> </el-table-column> <el-table-column label="年龄"> <template slot-scope="scope"> <template v-if="editIndex !== scope.$index"> {{ scope.row.age }} </template> <template v-else> <el-input v-model="scope.row.age"></el-input> </template> </template> </el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <template v-if="editIndex !== scope.$index"> <el-button type="primary" size="small" @click="edit(scope.$index)">编辑</el-button> </template> <template v-else> <el-button type="success" size="small" @click="save(scope.$index)">保存</el-button> <el-button type="warning" size="small" @click="cancel(scope.$index)">取消</el-button> </template> </template> </el-table-column> </el-table> </div> </template> <script> import { ElTable, ElTableColumn, ElInput, ElButton } from 'element-ui' export default { components: { ElTable, ElTableColumn, ElInput, ElButton }, data() { return { tableData: [ { name: '张三', age: 20 }, { name: '李四', age: 25 }, { name: '王五', age: 30 } ], editIndex: -1 } }, methods: { edit(index) { this.editIndex = index }, save(index) { this.editIndex = -1 }, cancel(index) { this.editIndex = -1 } } } </script> ``` 这样就可以通过 Vue.jsElement UI 实现表格单元格编辑了。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ponGISer

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值