perf: 优化演示页面

This commit is contained in:
xiaoxian521
2024-01-17 11:05:35 +08:00
parent 9ca6941946
commit db723b7908
51 changed files with 432 additions and 404 deletions

View File

@@ -10,7 +10,7 @@ import Refresh from "@iconify-icons/ep/refresh";
import AddFill from "@iconify-icons/ri/add-circle-line";
defineOptions({
name: "Dept"
name: "SystemDept"
});
const formRef = ref();
@@ -71,7 +71,7 @@ const {
</el-form>
<PureTableBar
title="部门列表(仅演示,操作后不生效)"
title="部门管理(仅演示,操作后不生效)"
:columns="columns"
:tableRef="tableRef?.getTableRef()"
@refresh="onSearch"
@@ -111,10 +111,20 @@ const {
link
type="primary"
:size="size"
:icon="useRenderIcon(EditPen)"
@click="openDialog('编辑', row)"
:icon="useRenderIcon(AddFill)"
@click="openDialog('新增', { parentId: row.id } as any)"
>
编辑
新增
</el-button>
<el-button
class="reset-margin"
link
type="primary"
:size="size"
:icon="useRenderIcon(EditPen)"
@click="openDialog('修改', row)"
>
修改
</el-button>
<el-popconfirm
:title="`是否确认删除部门名称为${row.name}的这条数据`"

View File

@@ -57,7 +57,7 @@ export function useDept() {
{
label: "操作",
fixed: "right",
width: 160,
width: 210,
slot: "operation"
}
];
@@ -141,7 +141,7 @@ export function useDept() {
// 实际开发先调用新增接口,再进行下面操作
chores();
} else {
// 实际开发先调用编辑接口,再进行下面操作
// 实际开发先调用修改接口,再进行下面操作
chores();
}
}
@@ -168,7 +168,7 @@ export function useDept() {
onSearch,
/** 重置 */
resetForm,
/** 新增、编辑部门 */
/** 新增、修改部门 */
openDialog,
/** 删除部门 */
handleDelete,

View File

@@ -13,7 +13,7 @@ import Menu from "@iconify-icons/ep/menu";
import AddFill from "@iconify-icons/ri/add-circle-line";
defineOptions({
name: "Role"
name: "SystemRole"
});
const formRef = ref();
@@ -87,7 +87,7 @@ const {
</el-form>
<PureTableBar
title="角色列表(仅演示,操作后不生效)"
title="角色管理(仅演示,操作后不生效)"
:columns="columns"
@refresh="onSearch"
>
@@ -127,7 +127,7 @@ const {
type="primary"
:size="size"
:icon="useRenderIcon(EditPen)"
@click="openDialog('编辑', row)"
@click="openDialog('修改', row)"
>
修改
</el-button>

View File

@@ -200,7 +200,7 @@ export function useRole() {
// 实际开发先调用新增接口,再进行下面操作
chores();
} else {
// 实际开发先调用编辑接口,再进行下面操作
// 实际开发先调用修改接口,再进行下面操作
chores();
}
}

View File

@@ -15,7 +15,7 @@ import Refresh from "@iconify-icons/ep/refresh";
import AddFill from "@iconify-icons/ri/add-circle-line";
defineOptions({
name: "User"
name: "SystemUser"
});
const treeRef = ref();
@@ -173,7 +173,7 @@ const {
type="primary"
:size="size"
:icon="useRenderIcon(EditPen)"
@click="openDialog('编辑', row)"
@click="openDialog('修改', row)"
>
修改
</el-button>

View File

@@ -342,7 +342,7 @@ export function useUser(tableRef: Ref, treeRef: Ref) {
// 实际开发先调用新增接口,再进行下面操作
chores();
} else {
// 实际开发先调用编辑接口,再进行下面操作
// 实际开发先调用修改接口,再进行下面操作
chores();
}
}