You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
191 lines
5.7 KiB
191 lines
5.7 KiB
<template> |
|
<PageWrapper dense |
|
contentFullHeight |
|
fixedHeight |
|
contentClass="flex" |
|
> |
|
<DeptTree class="w-1/4 xl:w-1/5" @select="handleSelect"/> |
|
<BasicTable class="w-3/4 xl:w-5/5" |
|
@register="registerTable" |
|
@fetch-success="handleSelectionChange" |
|
@selection-change="handleSelectionChange" |
|
> |
|
<template #toolbar> |
|
<a-button v-auth="['user_add']" |
|
type="primary" |
|
@click="handleAdd()" |
|
>新增用户</a-button> |
|
<a-button v-auth="['user_edit']" |
|
type="primary" |
|
:disabled="state.single" |
|
@click="handleEdit()" |
|
>修改用户</a-button> |
|
<a-button v-auth="['user_del']" |
|
type="primary" |
|
:disabled="state.multiple" |
|
@click="handleDel()" |
|
>删除用户</a-button> |
|
</template> |
|
<template #action="{ record }"> |
|
<TableAction :actions="[ |
|
{ |
|
label: '重置密码', |
|
icon: 'brandico:codepen', |
|
auth: ['user_reset'], |
|
onClick: handleResetPassword.bind(null, record), |
|
}, |
|
{ |
|
label: '编辑', |
|
icon: 'fa6-regular:pen-to-square', |
|
auth: ['user_edit'], |
|
onClick: handleEdit.bind(null, record) |
|
}, |
|
{ |
|
label: '删除', |
|
icon: 'ant-design:delete-outlined', |
|
color: 'error', |
|
auth: ['user_del'], |
|
onClick: handleDel.bind(null, record) |
|
}]" |
|
/> |
|
</template> |
|
</BasicTable> |
|
<UserModal @register="registerModal" @success="handleSuccess"/> |
|
<ResetPwdModal @register="registerResetPwdModal" @success="handleSuccess"/> |
|
</PageWrapper> |
|
</template> |
|
|
|
<script lang="ts"> |
|
import { defineComponent, reactive, toRaw } from 'vue'; |
|
import { BasicTable, useTable, TableAction } from '/@/components/Table'; |
|
import { listUser, delUser } from '/@/api/system/user'; |
|
import ResetPwdModal from './ResetPwdModal.vue'; |
|
import { PageWrapper } from '/@/components/Page'; |
|
import DeptTree from './DeptTree.vue'; |
|
import { useModal } from '/@/components/Modal'; |
|
import UserModal from './UserModal.vue'; |
|
import { columns, searchFormSchema } from './user.data'; |
|
import { useMessage } from '/@/hooks/web/useMessage'; |
|
import { convertDateRange } from "/@/utils/dateUtil"; |
|
|
|
const { createConfirm } = useMessage(); |
|
const { createMessage } = useMessage(); |
|
|
|
export default defineComponent({ |
|
name: 'UserManagement', |
|
components: { |
|
BasicTable, |
|
PageWrapper, |
|
DeptTree, |
|
TableAction, |
|
UserModal, |
|
ResetPwdModal |
|
}, |
|
setup() { |
|
const state = reactive({ |
|
// 选中数组 |
|
ids: [], |
|
// 非单个禁用 |
|
single: true, |
|
// 非多个禁用 |
|
multiple: true, |
|
// 搜索信息 |
|
searchInfo: {} as Recordable |
|
}); |
|
|
|
const [registerModal, { openModal }] = useModal(); |
|
const [registerResetPwdModal, { openModal: openResetPwdModal }] = useModal(); |
|
const [registerTable, { reload }] = useTable({ |
|
title: '用户列表', |
|
api: listUser, |
|
rowKey: 'id', |
|
columns, |
|
formConfig: { |
|
labelWidth: 120, |
|
schemas: searchFormSchema, |
|
autoSubmitOnEnter: true |
|
}, |
|
rowSelection: { type: 'checkbox' }, |
|
useSearchForm: true, |
|
showTableSetting: true, |
|
bordered: true, |
|
clickToRowSelect: false, |
|
showIndexColumn: false, |
|
searchInfo: state.searchInfo, |
|
actionColumn: { |
|
width: 220, |
|
title: '操作', |
|
dataIndex: 'action', |
|
slots: { customRender: 'action' }, |
|
fixed: false |
|
}, |
|
handleSearchInfoFn: (queryParams) => convertDateRange(queryParams, 'dateRange') |
|
}); |
|
|
|
/** 处理多选框选中数据 */ |
|
function handleSelectionChange(selection?: Recordable) { |
|
const rawRows = toRaw(selection?.rows) || []; |
|
state.ids = rawRows.map(item => item.id); |
|
state.single = rawRows.length != 1; |
|
state.multiple = !rawRows.length; |
|
} |
|
|
|
/** 新增按钮操作,行内新增与工具栏局域新增通用 */ |
|
function handleAdd() { |
|
openModal(true,{ _tag: 'add' }); |
|
} |
|
|
|
/** 编辑按钮操作,行内编辑 */ |
|
function handleEdit(record?: Recordable) { |
|
record = record || { id: toRaw(state.ids) }; |
|
openModal(true, { _tag: 'edit', record }); |
|
} |
|
|
|
/** 处理重置用户密码 */ |
|
function handleResetPassword(record: Recordable) { |
|
record = record || { id: toRaw(state.ids) }; |
|
openResetPwdModal(true, { record }); |
|
} |
|
|
|
/** 删除按钮操作,行内删除 */ |
|
async function handleDel(record?: Recordable) { |
|
const ids = record?.id || toRaw(state.ids); |
|
createConfirm({ |
|
iconType: 'warning', |
|
title: '警告', |
|
content: `是否确认删除用户编号为${ids}用户吗?`, |
|
onOk: async () => { |
|
await delUser(ids); |
|
createMessage.success('删除成功!'); |
|
handleSuccess(); |
|
} |
|
}); |
|
} |
|
|
|
/** 处理表单提交成功 */ |
|
function handleSuccess() { |
|
reload(); |
|
} |
|
|
|
/** 处理部门管理点击 */ |
|
function handleSelect(departId) { |
|
state.searchInfo.deptId = departId; |
|
handleSuccess(); |
|
} |
|
|
|
return { |
|
state, |
|
registerTable, |
|
registerModal, |
|
registerResetPwdModal, |
|
handleAdd, |
|
handleEdit, |
|
handleDel, |
|
handleSelectionChange, |
|
handleSuccess, |
|
handleSelect, |
|
handleResetPassword |
|
}; |
|
} |
|
}); |
|
</script>
|
|
|