vue elementui table表格+分页 删除末尾页唯一的一条数据后,页面自动跳转到上一页的js判断
发布时间:2024年01月22日
vue elementui table表格+分页 删除末尾页唯一的一条数据后,页面自动跳转到上一页的js判断
this.$confirm('您确定要删除吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
this.$axios.get('/admin/information/delete?id='+row.id).then((data) => {
if (data.code == 200) {
this.$message.success('操作成功!');
if (this.total !== 1) {
if (this.tableData.length === 1) {
this.formSearch.pageNum = this.formSearch.pageNum - 1
this.itemList()
} else {
this.itemList()
}
} else {
this.tableData = []
}
} else {
this.$message.error(data.msg);
}
});
})
.catch(() => {});
文章来源:https://blog.csdn.net/guo_2019/article/details/135747784
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!