refactor: ♻️ 系统管理页面优化重构

This commit is contained in:
hxr
2024-06-25 00:21:18 +08:00
parent 339db4be8e
commit 5ec0b03a8e
4 changed files with 9 additions and 15 deletions

View File

@@ -73,7 +73,7 @@
<i-ep-edit />编辑
</el-button>
<el-button
type="primary"
type="danger"
size="small"
link
@click="handleDelete(scope.row.id)"
@@ -275,7 +275,7 @@ const isExpanded = ref(true);
const parentChildLinked = ref(true);
// 查询
/** 查询 */
function handleQuery() {
loading.value = true;
RoleAPI.getPage(queryParams)
@@ -287,19 +287,19 @@ function handleQuery() {
loading.value = false;
});
}
// 重置查询
/** 重置查询 */
function handleResetQuery() {
queryFormRef.value.resetFields();
queryParams.pageNum = 1;
handleQuery();
}
// 行选中事件
/** 行选中 */
function handleSelectionChange(selection: any) {
ids.value = selection.map((item: any) => item.id);
}
// 打开弹窗
/** 打开角色弹窗 */
function handleOpenDialog(roleId?: number) {
dialog.visible = true;
if (roleId) {
@@ -339,7 +339,7 @@ function handleSubmit() {
});
}
/** 关闭表单弹窗 */
/** 关闭角色弹窗 */
function handleCloseDialog() {
dialog.visible = false;