根据这段代码增加一个删除用户按钮<div class="user-data" > <el-table class="user-data-table" :data="tableData" border stripe style="width: 100%"> <el-table-column prop="userId" label="用户ID" width="100"> </el-table-column> <el-table-column prop="userName" label="用户名称" width="120"> </el-table-column> <el-table-column prop="userSex" label="用户性别" width="100"> </el-table-column> <el-table-column prop="userAccount" label="用户账号" width="150"> </el-table-column> <el-table-column prop="userPassword" label="用户密码" width="150"> </el-table-column> <el-table-column prop="userEmail" label="用户邮箱" width="200"> </el-table-column> <el-table-column prop="userIntroduction" label="用户简介" width="200"> </el-table-column> <el-table-column prop="userIdentity" label="用户身份" width="100"> </el-table-column> <el-table-column prop="userPortrait" label="用户头像" width="450"> </el-table-column> <el-table-column fixed="right" label="操作" width="100"> <template slot-scope="scope"> <el-button @click="handleClick(scope.row)" type="text" size="small" icon="el-icon-edit">编辑</el-button> </el-popconfirm> </template> </el-table-column> </el-table>
时间: 2024-01-17 12:03:16 浏览: 99
JTable增加删除按钮实例
4星 · 用户满意度95%
可以在最后一个 `<el-table-column>` 中增加一个删除按钮,如下所示:
```
<el-table-column fixed="right" label="操作" width="100">
<template slot-scope="scope">
<el-button @click="handleClick(scope.row)" type="text" size="small" icon="el-icon-edit">编辑</el-button>
<el-popconfirm title="确定删除该用户吗?" @onConfirm="handleDelete(scope.row)">
<el-button type="text" size="small" icon="el-icon-delete">删除</el-button>
</el-popconfirm>
</template>
</el-table-column>
```
其中,增加了一个 `el-popconfirm` 弹出框,当点击删除按钮时,会弹出该弹出框,询问用户是否确认删除该用户,当用户确认删除时,会调用 `handleDelete` 方法来删除该用户。你需要在 `methods` 中定义 `handleDelete` 方法来实现删除用户的逻辑。
阅读全文