Vue table 动态表格td可编辑 详解
项目中需求用到可编辑表格下图这种 ↓element UI 组件table表格中 增加template 模版翻入input根据业务逻辑增加全局变量 isEdit 是否变化。<el-table-columnlabel="名称"width="140"><template scope="scope">...
·
项目中需求用到可编辑表格
下图这种 ↓
element UI 组件table表格中 增加template 模版
翻入input
根据业务逻辑增加全局变量 isEdit 是否变化。
<el-table-column
label="名称"
width="140">
<template scope="scope">
<el-input v-if="scope.row.isEdit && scope.row.status === 0" v-model="scope.row.name" ></el-input>
<label v-if="scope.row.status === 1" class="indisable">{{scope.row.name +'(已禁用)' || '--'}}</label>
<label v-if="!scope.row.isEdit && scope.row.status === 0">{{scope.row.name || '--'}}</label>
</template>
</el-table-column>
编辑函数 :@lick="edit"
edit (val) {
this.initUpdateVal = val.name
val.isEdit = true
},
百,\度。网盘地址:
链接: https://pan.baidu.com/s/1CYKMzqN86t3Uq8xP0DdhSA 提取码: hp58
更多推荐
已为社区贡献10条内容
所有评论(0)