vue结合Element UI如何实现表格数据的删除操作
一、Element UI中表格数据的删除在表格数据的删除按钮下,进行绑定删除事件,removeUserById()。在这个是事件中,传入当前项的id值,通过scope.row.id就可以获得当前项的id值,代码如下:<!-- 删除按钮 --><el-button type="danger" icon="el-icon-delete" size="mini...
·
一、Element UI中表格数据的删除
- 在表格数据的删除按钮下,进行绑定删除事件,
removeUserById()
。在这个是事件中,传入当前项的id
值,通过scope.row.id
就可以获得当前项的id值,代码如下:
<!-- 删除按钮 -->
<el-button type="danger" icon="el-icon-delete" size="mini" @click="removeUserById(scope.row.id)"></el-button>
- 在
method
中,定义removeUserById()
方法,传入id
。在点击删除按钮以后,可以给一个消息提示,判断用户是否决定删除,可以引用Element UI
中的MessageBox
弹框。我们可以在引入MessageBox
以后,进行原型挂载,代码如下:
Vue.prototype.$confirm = MessageBox.confirm
- 在
method
中定义的removeUserById(id)
方法中,使用MessageBox
组件。由于this.$confirm
的返回值是一个promise
对象,所以可以使用async
和await
进行简化操作。如果用户确认删除,则返回值为字符串confirm
。如果用户取消删除,则返回值为字符串cancel
。在用户确认删除以后,调用删除的api
,传入当前项的id
值。如果状态码不为200
,说明删除失败,反之则删除成功。然后给一个删除成功的提示,更新数据列表,代码如下:
// 根据id对应的用户信息
async removeUserById (id) {
// 弹框询问用户是否删除数据
const confirmResult = await this.$confirm('此操作将永久删除该用户, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
})
})
if (confirmResult !== 'confirm') {
return this.$message.info('已取消删除')
}
const {data: res} = await this.$http.delete('users/' + id)
if (res.meta.status !== 200) {
return this.$message.error('删除用户失败!')
}
this.$message.success('删除用户成功!')
this.getUserList()
}
二、Element UI中表格数据的删除实现
- Element UI中表格数据的删除实现,完整代码如下:
<template>
<div>
<!-- 面包屑导航区域 -->
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-item>
<el-breadcrumb-item>用户管理</el-breadcrumb-item>
<el-breadcrumb-item>用户列表</el-breadcrumb-item>
</el-breadcrumb>
<!-- 卡片视图区域 -->
<el-card class="box-card">
<!-- 搜索与添加区域 -->
<el-row :gutter="20">
<el-col :span="8">
<el-input placeholder="请输入内容" v-model="queryInfo.query" clearable @clear="getUserList()">
<el-button slot="append" icon="el-icon-search" @click="getUserList()"></el-button>
</el-input>
</el-col>
<el-col :span="4">
<el-button type="primary" @click="dialogVisible=true">添加用户</el-button>
</el-col>
</el-row>
<!-- 用户列表区域 -->
<el-table :data="userList" :stripe="true" :border="true">
<el-table-column type="index"></el-table-column>
<el-table-column prop="username" label="用户名称"></el-table-column>
<el-table-column prop="email" label="邮箱"></el-table-column>
<el-table-column prop="mobile" label="电话"></el-table-column>
<el-table-column prop="role_name" label="角色"></el-table-column>
<el-table-column prop="mg_state" label="状态">
<template slot-scope="scope">
<!-- scope.row 可以取到当前一行的数据 -->
<!-- {{ scope.row }} -->
<el-switch v-model="scope.row.mg_state" @change="userStateChange(scope.row)">
</el-switch>
</template>
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<!-- 修改按钮 -->
<el-button type="primary" icon="el-icon-edit" size="mini" @click="showEditDialog(scope.row.id)"></el-button>
<!-- 删除按钮 -->
<el-button type="danger" icon="el-icon-delete" size="mini" @click="removeUserById(scope.row.id)"></el-button>
<!-- 分配角色按钮 -->
<el-tooltip effect="dark" content="分配角色" placement="top" :enterable="false">
<el-button type="warning" icon="el-icon-setting" size="mini"></el-button>
</el-tooltip>
</template>
</el-table-column>
</el-table>
<!-- 分页区域 -->
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="queryInfo.pagenum"
:page-sizes="[1, 2, 5, 10]"
:page-size="queryInfo.pagesize"
layout="total, sizes, prev, pager, next, jumper"
:total="total">
</el-pagination>
</el-card>
<!-- 添加用户的对话框 -->
<el-dialog
title="添加用户"
:visible.sync="dialogVisible"
width="50%"
@close="addDialogClosed">
<!-- 内容的主体区域 -->
<el-form ref="addFormRef" :model="addForm" :rules="addFormRules" label-width="70px">
<el-form-item label="用户名" prop="username">
<el-input v-model="addForm.username"></el-input>
</el-form-item>
<el-form-item label="密码" prop="password">
<el-input v-model="addForm.password"></el-input>
</el-form-item>
<el-form-item label="邮箱" prop="email">
<el-input v-model="addForm.email"></el-input>
</el-form-item>
<el-form-item label="手机号" prop="mobile">
<el-input v-model="addForm.mobile"></el-input>
</el-form-item>
</el-form>
<!-- 底部区域 -->
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false">取 消</el-button>
<el-button type="primary" @click="addUser">确 定</el-button>
</span>
</el-dialog>
<!-- 修改用户的对话框 -->
<el-dialog
title="修改用户"
:visible.sync="editDialogVisible"
width="50%"
@close="editDialogClosed">
<el-form :model="editForm" :rules="editFormRules" ref="editFormRef" label-width="70px">
<el-form-item label="用户名">
<el-input v-model="editForm.username" disabled></el-input>
</el-form-item>
<el-form-item label="邮箱" prop="email">
<el-input v-model="editForm.email"></el-input>
</el-form-item>
<el-form-item label="手机" prop="mobile">
<el-input v-model="editForm.mobile"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="editDialogVisible = false">取 消</el-button>
<el-button type="primary" @click="editUserInfo">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
export default {
data () {
// 验证邮箱的校验规则
var checkEmail = (rule, value, callback) => {
// 验证邮箱的正则表达式
const regEmail = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/
if (regEmail.test(value)) {
// 验证通过,合法的邮箱
return callback()
}
// 验证不通过,不合法
callback(new Error('请输入合法的邮箱'))
}
// 验证手机号的验证规则
var checkMobile = (rule, value, callback) => {
// 验证手机号的正则表达式
const regMobile = /^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$/
if (regMobile.test(value)) {
// 验证通过,合法的手机号
return callback()
}
// 验证不通过,不合法
callback(new Error('请输入合法的手机号'))
}
return {
// 获取用户列表的参数对象
queryInfo: {
// 查询参数
query: '',
// 当前的页码数
pagenum: 1,
// 每页显示多少条数据
pagesize: 2
},
// 获取的用户列表
userList: [],
// 总数
total: 0,
// 控制添加用户对话框的显示与隐藏,默认为隐藏
dialogVisible: false,
// 添加用户的表单数据
addForm: {
username: '',
password: '',
email: '',
mobile: ''
},
// 添加表单的验证规则对象
addFormRules: {
username: [
{ required: true, message: '请输入用户名', trigger: 'blur' },
{ min: 3, max: 10, message: '长度在 3 到 10 个字符', trigger: 'blur' }
],
password: [
{ required: true, message: '请输入密码', trigger: 'blur' },
{ min: 3, max: 10, message: '长度在 6 到 15 个字符', trigger: 'blur' }
],
email: [
{ required: true, message: '请输入邮箱', trigger: 'blur' },
{ validator: checkEmail, trigger: 'blur' }
],
mobile: [
{ required: true, message: '请输入手机号', trigger: 'blur' },
{ validator: checkMobile, trigger: 'blur' }
]
},
// 控制修改用户对话框的显示与隐藏,默认为隐藏
editDialogVisible: false,
// 查询到的用户信息对象
editForm: {},
// 修改表单的验证规则对象
editFormRules: {
email: [
{ required: true, message: '请输入邮箱', trigger: 'blur' },
{ validator: checkEmail, trigger: 'blur' }
],
mobile: [
{ required: true, message: '请输入手机号', trigger: 'blur' },
{ validator: checkMobile, trigger: 'blur' }
]
}
}
},
created () {
this.getUserList()
},
methods: {
async getUserList () {
const {data: res} = await this.$http.get('users', {
params: this.queryInfo
})
if (res.meta.status !== 200) {
return this.$message('获取用户列表失败!')
}
this.userList = res.data.users
this.total = res.data.total
console.log(res)
},
// 监听 pageSize 改变的事件
handleSizeChange (newSize) {
// console.log(newSize)
// 将监听接受到的每页显示多少条的数据 newSzie 赋值给 pagesize
this.queryInfo.pagesize = newSize
// 修改完以后,重新发起请求获取一次数据
this.getUserList()
},
// 监听 页码值 改变的事件
handleCurrentChange (newPage) {
// console.log(newPage)
// 将监听接受到的页码值的数据 newPage 赋值给 pagenum
this.queryInfo.pagenum = newPage
// 修改完以后,重新发起请求获取一次数据
this.getUserList()
},
// 监听 switch 开关状态的改变
async userStateChange (userInfo) {
console.log(userInfo)
const {data: res} = await this.$http.put(`users/${userInfo.id}/state/${userInfo.mg_state}`)
if (res.meta.status !== 200) {
// 更新失败,将状态返回初始状态
this.userInfo.mg_state = !this.userInfo.mg_state
this.$message.error('更新用户状态失败!')
}
this.$message.success('更新用户状态成功!')
},
// 监听添加用户对话框的关闭事件
addDialogClosed () {
this.$refs.addFormRef.resetFields()
},
// 点击按钮,添加新用户
addUser () {
this.$refs.addFormRef.validate(async valid => {
// 如果valid的值为true,说明预校验成功,反之则校验失败
// console.log(valid)
// 校验失败
if (!valid) return
// 校验成功,可以发起添加用户的网络请求
const {data: res} = await this.$http.post('users', this.addForm)
if (res.meta.status !== 201) {
this.$message.error('添加用户失败!')
}
this.$message.success('添加用户成功!')
// 隐藏添加用户的对话框
this.dialogVisible = false
// 重新获取用户列表数据
this.getUserList()
})
},
// 展示编辑用户的对话框
async showEditDialog(id) {
// console.log(id)
const {data: res} = await this.$http.get('users/' + id)
if (res.meta.status !== 200) {
return this.$message.error('查询用户信息失败!')
}
this.editForm = res.data
this.editDialogVisible = true
},
// 监听修改用户对话框的关闭
editDialogClosed () {
this.$refs.editFormRef.resetFields()
},
// 修改用户信息并且提交
editUserInfo () {
this.$refs.editFormRef.validate(async valid => {
console.log(valid)
if (!valid) return
// 发起修改用户信息的数据请求
const {data: res} = await this.$http.put('users/' + this.editForm.id, {
email: this.editForm.email,
mobile: this.editForm.mobile
})
if (res.meta.status !== 200) {
return this.$message.error('更新用户信息失败!')
}
// 关闭对话框
this.editDialogVisible = false
// 更新数据列表
this.getUserList()
// 提示修改成功
this.$message.success('更新用户信息成功!')
})
},
// 根据id对应的用户信息
async removeUserById (id) {
// 弹框询问用户是否删除数据
const confirmResult = await this.$confirm('此操作将永久删除该用户, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
})
})
// 如果用户确认删除,则返回值为字符串 confirm
// 如果用户取消删除,则返回值为字符串 cancel
if (confirmResult !== 'confirm') {
return this.$message.info('已取消删除')
}
// 发起删除用户信息的数据请求
const {data: res} = await this.$http.delete('users/' + id)
if (res.meta.status !== 200) {
return this.$message.error('删除用户失败!')
}
// 提示删除成功
this.$message.success('删除用户成功!')
// 更新数据列表
this.getUserList()
}
}
}
</script>
<style lang="less" scoped>
</style>
2.Element UI中表格数据的删除实现,效果如下:
更多推荐
已为社区贡献26条内容
所有评论(0)