mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-04 07:27:41 +08:00
173 lines
4.3 KiB
Vue
173 lines
4.3 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import { useDept } from "./utils/hook";
|
|
import { PureTableBar } from "@/components/RePureTableBar";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
|
|
import Delete from "~icons/ep/delete";
|
|
import EditPen from "~icons/ep/edit-pen";
|
|
import Refresh from "~icons/ep/refresh";
|
|
import AddFill from "~icons/ri/add-circle-line";
|
|
|
|
defineOptions({
|
|
name: "SystemDept"
|
|
});
|
|
|
|
const formRef = ref();
|
|
const tableRef = ref();
|
|
const {
|
|
form,
|
|
loading,
|
|
columns,
|
|
dataList,
|
|
onSearch,
|
|
resetForm,
|
|
openDialog,
|
|
handleDelete,
|
|
handleSelectionChange
|
|
} = useDept();
|
|
|
|
function onFullscreen() {
|
|
// 重置表格高度
|
|
tableRef.value.setAdaptive();
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main">
|
|
<el-form
|
|
ref="formRef"
|
|
:inline="true"
|
|
:model="form"
|
|
class="search-form bg-bg_color w-full pl-8 pt-[12px] overflow-auto"
|
|
>
|
|
<el-form-item label="部门名称:" prop="name">
|
|
<el-input
|
|
v-model="form.name"
|
|
placeholder="请输入部门名称"
|
|
clearable
|
|
class="w-[180px]!"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态:" prop="status">
|
|
<el-select
|
|
v-model="form.status"
|
|
placeholder="请选择状态"
|
|
clearable
|
|
class="w-[180px]!"
|
|
>
|
|
<el-option label="启用" :value="1" />
|
|
<el-option label="停用" :value="0" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon('ri/search-line')"
|
|
:loading="loading"
|
|
@click="onSearch"
|
|
>
|
|
搜索
|
|
</el-button>
|
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)">
|
|
重置
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<PureTableBar
|
|
title="部门管理(仅演示,操作后不生效)"
|
|
:columns="columns"
|
|
:tableRef="tableRef?.getTableRef()"
|
|
@refresh="onSearch"
|
|
@fullscreen="onFullscreen"
|
|
>
|
|
<template #buttons>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon(AddFill)"
|
|
@click="openDialog()"
|
|
>
|
|
新增部门
|
|
</el-button>
|
|
</template>
|
|
<template v-slot="{ size, dynamicColumns }">
|
|
<pure-table
|
|
ref="tableRef"
|
|
adaptive
|
|
:adaptiveConfig="{ offsetBottom: 45 }"
|
|
align-whole="center"
|
|
row-key="id"
|
|
showOverflowTooltip
|
|
table-layout="auto"
|
|
default-expand-all
|
|
:loading="loading"
|
|
:size="size"
|
|
:data="dataList"
|
|
:columns="dynamicColumns"
|
|
:header-cell-style="{
|
|
background: 'var(--el-fill-color-light)',
|
|
color: 'var(--el-text-color-primary)'
|
|
}"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<template #operation="{ row }">
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(EditPen)"
|
|
@click="openDialog('修改', row)"
|
|
>
|
|
修改
|
|
</el-button>
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(AddFill)"
|
|
@click="openDialog('新增', { parentId: row.id } as any)"
|
|
>
|
|
新增
|
|
</el-button>
|
|
<el-popconfirm
|
|
:title="`是否确认删除部门名称为${row.name}的这条数据`"
|
|
@confirm="handleDelete(row)"
|
|
>
|
|
<template #reference>
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Delete)"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</template>
|
|
</pure-table>
|
|
</template>
|
|
</PureTableBar>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
:deep(.el-table__inner-wrapper::before) {
|
|
height: 0;
|
|
}
|
|
|
|
.main-content {
|
|
margin: 24px 24px 0 !important;
|
|
}
|
|
|
|
.search-form {
|
|
:deep(.el-form-item) {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
</style>
|