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>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

ponGISer

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

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

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

打赏作者

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

抵扣说明:

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

余额充值