elementui 动态编辑表格,为啥通过下面的v-if获取按后设置hour的值 却不改变现实内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elementui 动态编辑表格,为啥通过下面的v-if获取按后设置hour的值 却不改变现实内容相关的知识,希望对你有一定的参考价值。

<el-table :data="table" border style="width:100%">
<el-table-column type="selection" fixed></el-table-column>
<el-table-column width="200" label="日期">
<template slot-scope="scope">
<span v-show="editable[scope.$index]">scope.row.date</span>
<span v-if="!editable[scope.$index]">
<el-input v-model="scope.row.date"></el-input>
</span>
<span style="float:right"><el-button type="text" @click="edit(scope.row,scope.$index)"><i class="el-icon-edit"></i></el-button></span>
</template>
</el-table-column>
</el-table>

<script>
export default
data()
return
editable:[],
table:[

date: '2016-05-03',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 123弄',
zip: 200333,
editflag:false
,
...........
]

,
methods:
edit(row,index)
this.editable[index]=1;
console.log(this.editable)

,



</script>

基于 ElementUI 的可编辑表格,可以参考这里 github

参考技术A 编成

以上是关于elementui 动态编辑表格,为啥通过下面的v-if获取按后设置hour的值 却不改变现实内容的主要内容,如果未能解决你的问题,请参考以下文章

前端的ElementUI表格里面的编辑前后的值的获取

elementui下拉加载表格行

vue elementUI table表格列动态渲染的案例

element-ui 动态表头渲染表格

vue框架iview中Table动态表头可编辑内容的jsx写法

element表格删除行