⭐️⭐️⭐️ 作者:船长在船上
主页:来访地址船长在船上的博客
简介:CSDN前端领域优质创作者,资深前端开发工程师,专注前端开发,在CSDN总结工作中遇到的问题或者问题解决方法以及对新技术的分享,欢迎咨询交流,共同学习。感谢:如果觉得博主的文章不错或者对你的工作有帮助或者解决了你的问题,可以点赞收藏关注、支持一下博主。如有疑问可以留言、评论,看到后会及时回复。
vue后台系统管理项目:
- 技术选型:vue + element-ui
- 菜单权限管理模块功能
- 菜单列表查询,通过(菜单名称;类型分为:全部、一级菜单、二级菜单;状态:启用、禁用)进行数据搜索。
- 查询、重置功能
- 菜单列表分页实现
- 菜单详情查看、菜单禁用、菜单编辑、删除操作
- 新建菜单功能包括对(菜单名称、类型、排序、url地址、图标、备注、父菜单选择)选项信息的配置。
目录
vue后台系统管理项目
style 样式
data数据定义
接口引入
methods方法
created接口请求
menu.vue 菜单页面
table属性:
header-cell-style 表头单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有表头单元格设置一样的 Style
cell-style 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style
首页
菜单管理
查询
重置
新建菜单
{{ scope.row.type === '1' ? '一级菜单' : scope.row.type === '2' ? '二级菜单' : '按钮' }}
{{ scope.row.disable === false ? '启用' : '禁用' }}
查看详情
{{ scope.row.disable === false ? '禁用' : '启用' }}
删除
style 样式
data数据定义
搜索条件、分页、table数据、菜单选项等定义
data() {
return {
options: [],
pagination: {
pageNum: 1,
pageSize: 10,
total: 0
},
searchForm: {
name: "",
type: "",
disable: null
},
disableOrEnableForm: {
id: "",
disable: true
},
addButton: false,
dialogMenuForm: false,
menuFormTitle: "",
menuForm: {
id: "",
name: "",
type: "",
sortNo: "",
url: "",
parentId: "",
remark: "",
icon: ""
},
tableData: []
};
},
接口引入
import {
addMenu,//添加菜单
deleteMenu,//删除菜单
getAllMenu,//获取全部菜单
getMenuPage,//菜单列表数据
menuDisableOrEnable,//菜单禁用
menuInfo,//菜单详情
updateMenu//更新、编辑菜单
} from "../../api/userMG";
methods方法
//获取菜单列表函数
getMenuPageFun() {
this.searchForm.pageSize = this.pagination.pageSize;
this.searchForm.pageNum = this.pagination.pageNum;
getMenuPage(this.searchForm).then(res => {
if (res.code === 200) {
console.log(res, "菜单管理页面请求列表");
this.tableData = res.data.records;
this.pagination.total = res.data.total;
} else {
this.$message.error(res.msg);
}
});
},
//父菜单下拉框
getAllMenuFun() {
getAllMenu().then(res => {
if (res.code === 200) {
this.options = res.data;
} else {
this.$message.error("菜单获取失败!");
}
});
},
handleSelectChange(value) {
this.menuForm.parentId = value;
},
typeChange(value) {
if (value == '1'){
this.menuForm.parentId = '';
}
},
submitSearchForm() {
this.pagination.pageNum = 1;
this.getMenuPageFun();
},
resetFields对整个表单进行重置,将所有字段值重置为初始值并移除校验结果
resetSearchForm(searchForm) {
this.pagination.pageNum = 1;
this.$refs[searchForm].resetFields();
this.searchForm.type = "";
this.searchForm.name = "";
this.searchForm.disable = null;
this.getMenuPageFun();
},
size-cahange:pageSize 改变时会触发 每页条数的变化
handleSizeChange(val) {
this.pagination.pageSize = val;
this.pagination.pageNum = 1;
this.getMenuPageFun();
},
current-change :currentPage 改变时会触发 当前页值得变化
handleCurrentChange(val) {
this.pagination.pageNum = val;
this.getMenuPageFun();
},
//确定按钮函数
confirmButtonFun() {
//修改菜单
if (this.addButton === false) {
updateMenu(this.menuForm).then(res => {
if (res.code === 200) {
this.$message.success("操作成功");
this.dialogMenuForm = false;
this.reload();
} else {
this.$message.error("操作失败");
}
})
}
//添加菜单
if (this.addButton === true) {
addMenu(this.menuForm).then(res => {
if (res.code === 200) {
this.dialogMenuForm = false;
this.$message.success("添加成功");
this.reload();
} else {
this.$message.error(res.msg);
}
})
}
},
//查看详情
handleEditClick(row) {
this.dialogMenuForm = true;
this.menuFormTitle = "编辑菜单";
this.addButton = false;
menuInfo({id: row.id}).then(res => {
if (res.code === 200) {
this.menuForm.name = res.data.name;
this.menuForm.type = res.data.type;
this.menuForm.sortNo = res.data.sortNo;
this.menuForm.url = res.data.url;
this.menuForm.parentId = res.data.parentId;
this.menuForm.remark = res.data.remark;
this.menuForm.id = res.data.id;
this.menuForm.icon = res.data.icon;
}
});
},
//删除菜单
handleDeleteClick(row) {
this.$confirm("确定删除当前菜单吗?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(() => {
deleteMenu({"id": row.id}).then(res => {
if (res.code === 200) {
this.reload();
this.$message.success("删除成功");
} else {
this.$message.error("删除失败");
}
})
})
},
//新建菜单按钮
addMenu(menuForm) {
this.addButton = true;
this.dialogMenuForm = true;
this.menuFormTitle = "新建菜单";
if (this.$refs[menuForm] !== undefined) {
this.$refs[menuForm].resetFields();
}
},
resetFields对整个表单进行重置,将所有字段值重置为初始值并移除校验结果
//取消按钮
esc(menuForm) {
this.dialogMenuForm = false;
this.$refs[menuForm].resetFields();
},
// 更改,启用和禁用
handleDisabledClick(row) {
this.$confirm(
row.disable === true
? "是否将此用户开启使用?"
: "是否将此用户禁止使用?",
"提示",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}
)
.then(() => {
let params = {
disable: row.disable === true ? "false" : "true",
id: row.id
};
menuDisableOrEnable(params)
.then(res => {
this.loading = false;
if (res.code === 200) {
console.log(res.data, "请求菜单启用和禁用");
this.$message.success({
message: row.disable === true ? "启用成功" : "禁用成功"
});
this.reload();
} else {
this.$message.error(res.msg);
}
})
.catch(err => {
this.loading = false;
this.$message.error("菜单加载失败,请稍后再试!");
});
})
.catch(() => {
this.$message({
type: "info",
message: "已取消操作"
});
});
}
created接口请求
created() {
this.getMenuPageFun();//获取菜单列表数据
this.getAllMenuFun();//获取所有菜单
},
欢迎来访船长在船上的博客,文章持续更新;项目功能持续迭代,请及时收藏关注,方便查看。 发文不易,点赞收藏评论关注一下!