Files
pqs-9100_client/frontend/src/views/authority/user/index.vue

217 lines
7.2 KiB
Vue
Raw Normal View History

<template>
<div class='table-box'>
<ProTable
ref='proTable'
:columns='columns'
2024-11-01 13:49:32 +08:00
:request-api="getTableList"
:data-callback="dataCallback"
>
2024-11-01 13:49:32 +08:00
<!-- :data='userData' -->
<!-- 表格 header 按钮 -->
<template #tableHeader='scope'>
<el-button type='primary' :icon='CirclePlus' @click="openDrawer('新增用户')">新增</el-button>
2024-11-01 13:49:32 +08:00
<el-button type='primary' :icon='Download' plain >导出数据</el-button>
<el-button type='danger' :icon='Delete' plain :disabled='!scope.isSelected'
@click='batchDelete(scope.selectedListIds)'>
批量删除
</el-button>
</template>
<!-- 表格操作 -->
<template #operation='scope'>
<el-button type='primary' link :icon='View' @click="openDrawer('查看用户', scope.row)">查看</el-button>
<el-button type='primary' link :icon='EditPen' @click="openDrawer('编辑用户', scope.row)">编辑</el-button>
<el-button type='primary' link :icon='Delete' @click='deleteAccount(scope.row)'>删除</el-button>
</template>
</ProTable>
</div>
2024-11-01 13:49:32 +08:00
<userPopup
:dialogVisible = userPopupVisible
:title = userPopupTitle
:data = userPopupData
:openType=openType
:getTableList="proTable?.getTableList || (() => {})"
@update:visible="userPopupVisible = $event"
/>
</template>
<script setup lang='tsx' name='useRole'>
import { User } from '@/api/user/interface'
import { useHandleData } from '@/hooks/useHandleData'
import { useDownload } from '@/hooks/useDownload'
import { useAuthButtons } from '@/hooks/useAuthButtons'
import ProTable from '@/components/ProTable/index.vue'
2024-11-01 13:49:32 +08:00
import userPopup from './components/userPopup.vue'
import ImportExcel from '@/components/ImportExcel/index.vue'
import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
import { CirclePlus, Delete, EditPen, Download, Upload, View, Refresh } from '@element-plus/icons-vue'
import userDataList from '@/api/user/userData'
import { useDictStore } from '@/stores/modules/dict'
import {
getUserList,
addUser,
BatchAddUser,
editUser,
deleteUser,
} from '@/api/user/user'
2024-11-01 13:49:32 +08:00
const {userPopupVisible,userPopupTitle,userPopupData} = useCount();
function useCount() {
2024-11-01 13:49:32 +08:00
const userPopupVisible = ref(false)
const userPopupTitle = ref()
const userPopupData = ref<User.UserBO>({} as User.UserBO)
return {userPopupVisible,userPopupTitle,userPopupData};
}
const dictStore = useDictStore()
2024-11-01 13:49:32 +08:00
let openType = ''
// const userData = userDataList
// ProTable 实例
const proTable = ref<ProTableInstance>()
// 如果表格需要初始化请求参数,直接定义传给 ProTable (之后每次请求都会自动带上该参数,此参数更改之后也会一直带上,改变此参数会自动刷新表格数据)
2024-11-01 13:49:32 +08:00
// const initParam = reactive({ type: 1 })
// dataCallback 是对于返回的表格数据做处理,如果你后台返回的数据不是 list && total 这些字段,可以在这里进行处理成这些字段
// 或者直接去 hooks/useTable.ts 文件中把字段改为你后端对应的就行
const dataCallback = (data: any) => {
return {
list: data.list,
total: data.total,
2024-11-01 13:49:32 +08:00
pageNum: data.pageNum,
pageSize: data.pageSize,
}
}
// 如果你想在请求之前对当前请求参数做一些操作可以自定义如下函数params 为当前所有的请求参数(包括分页),最后返回请求列表接口
// 默认不做操作就直接在 ProTable 组件上绑定 :requestApi="getUserList"
const getTableList = (params: any) => {
let newParams = JSON.parse(JSON.stringify(params))
newParams.createTime && (newParams.startTime = newParams.createTime[0])
newParams.createTime && (newParams.endTime = newParams.createTime[1])
delete newParams.createTime
return getUserList(newParams)
}
// 页面按钮权限(按钮权限既可以使用 hooks也可以直接使用 v-auth 指令指令适合直接绑定在按钮上hooks 适合根据按钮权限显示不同的内容)
const { BUTTONS } = useAuthButtons()
// 表格配置项
2024-11-01 13:49:32 +08:00
const columns = reactive<ColumnProps<User.UserBO>[]>([
{ type: 'selection', fixed: 'left', width: 70 },
{ type: 'index', fixed: 'left', width: 70, label: '序号' },
{
2024-11-01 13:49:32 +08:00
prop: 'name',
label: '用户名',
search: { el: 'input' },
minWidth: 150,
},
{
2024-11-01 13:49:32 +08:00
prop: 'loginName',
label: '登录名',
search: { el: 'input' },
minWidth: 180,
},
{
prop: 'password',
label: '密码',
minWidth: 180,
},
{
2024-11-01 13:49:32 +08:00
prop: 'phone',
label: '手机号',
minWidth: 180,
},
{
2024-11-01 13:49:32 +08:00
prop: 'email',
label: '邮箱',
minWidth: 180,
},
{
prop: 'loginTime',
label: '最后一次登录时间',
minWidth: 180,
},
{
prop: 'loginErrorTimes',
label: '登录错误次数',
minWidth: 180,
},
{
prop: 'lockTime',
label: '用户密码错误锁定时间',
minWidth: 180,
},
{ prop: 'operation', label: '操作', fixed: 'right', width: 330 },
])
2024-11-01 13:49:32 +08:00
// 删除用户信息
const deleteAccount = async (params: User.UserBO) => {
await useHandleData(deleteUser, { id: [params.id] }, `删除【${params.name}】用户`)
proTable.value?.getTableList()
}
// 批量删除角色信息
const batchDelete = async (id: string[]) => {
2024-11-01 13:49:32 +08:00
await useHandleData(deleteUser, { id }, '删除所选用户信息')
proTable.value?.clearSelection()
proTable.value?.getTableList()
}
// 导出角色列表
2024-11-01 13:49:32 +08:00
// const downloadFile = async () => {
// ElMessageBox.confirm('确认导出角色数据?', '温馨提示', { type: 'warning' }).then(() =>
// useDownload(exportUserInfo, '角色列表', proTable.value?.searchParam),
// )
// }
// 批量添加角色
const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
const batchAdd = () => {
2024-11-01 13:49:32 +08:00
// const params = {
// title: '角色',
// tempApi: exportUserInfo,
// importApi: BatchAddUser,
// getTableList: proTable.value?.getTableList,
// }
// dialogRef.value?.acceptParams(params)
}
// 打开 drawer(新增、查看、编辑)
2024-11-01 13:49:32 +08:00
const openDrawer = (title: string, row: Partial<User.UserBO> = {}) => {
if(title === "查看用户" ||title === "新增用户" || title === '编辑用户' )
{
2024-11-01 13:49:32 +08:00
if (title === '查看用户')
openType = 'view'
else if (title === '新增用户')
openType = 'add'
else if (title === '编辑用户')
openType = 'edit'
userPopupVisible.value = true
userPopupTitle.value = title
if (row) {
// 确保 row 的所有属性都符合 User.ResUserList 的要求
2024-11-01 13:49:32 +08:00
const safeRow: User.UserBO = {
id: row.id || '',
2024-11-01 13:49:32 +08:00
name: row.name || '',
loginName: row.loginName || '',
password: row.password || '',
2024-11-01 13:49:32 +08:00
phone: row.phone || '',
email: row.email || '',
loginTime: row.loginTime || '',
loginErrorTimes: row.loginErrorTimes || 0,
lockTime: row.lockTime || '',
};
2024-11-01 13:49:32 +08:00
userPopupData.value = safeRow;
}
}
}
</script>