当前位置:主页 > 网页前端 > vue >

Vue如何更改表格中的某一行选项值

时间:2022-10-20 10:15:01 | 栏目:vue | 点击:

如何更改表格中的某一行选项值

结合后端接口,进行相应的传参 Id, state值等,因相关组件库中的方法说明比较简单,有些需要自己去尝试,如下图中change()方法的传参等

//ajax发送请求的相关方法:
get : 获取  ,
post: 新增 ,
put/patch : 更改,
delete:  删除

代码实现

组件库中的方法介绍:

接口示例:

效果:

对table某一行的数据进行编辑,删除,查看详情操作

效果图

在html中需要对button按钮进行template包裹,scope.row就是这一行的数据

<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="primary" @click="editProgram(scope.row)">编辑</el-button>
<el-button type="danger"  @click="del(scope.row)">删除</el-button>
<el-button type="primary" @click="showDetail(scope.row)">详情</el-button>
</template>
</el-table-column>

您可能感兴趣的文章:

相关文章