Files
pqs-9100_client/frontend/src/views/demo/proTable/index.vue

210 lines
7.9 KiB
Vue
Raw Normal View History

<template>
2024-10-28 13:25:45 +08:00
<div class='table-box' ref='popupBaseView'>
<ProTable
2024-10-28 13:25:45 +08:00
ref='proTable'
:columns='columns'
:data='userData'
>
<!-- 表格 header 按钮 -->
<template #tableHeader='scope'>
<el-button type='primary' :icon='CirclePlus' @click="openDrawer('新增')">新增用户</el-button>
<el-button type='primary' :icon='Upload' plain @click='batchAdd'>批量添加用户</el-button>
<el-button type='primary' :icon='Download' plain @click='downloadFile'>导出用户数据</el-button>
<el-button type='danger' :icon='Delete' plain :disabled='!scope.isSelected'
@click='batchDelete(scope.selectedListIds)'>
批量删除用户
</el-button>
</template>
<!-- 表格操作 -->
<template #operation='scope'>
2024-10-16 15:33:14 +08:00
<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='Refresh' @click='resetPass(scope.row)'>重置密码</el-button>
2024-10-28 13:25:45 +08:00
<el-button type='primary' link :icon='CirclePlus' @click='deleteAccount()'>下钻</el-button>
</template>
</ProTable>
</div>
2024-10-22 14:47:25 +08:00
<single-column ref='singleColumn' />
<double-column ref='doubleColumn' />
2024-10-28 13:25:45 +08:00
<open :width='viewWidth' :height='viewHeight' ref='openView' />
</template>
<script setup lang='tsx' name='useProTable'>
2024-10-22 14:47:25 +08:00
import { ref, reactive } from 'vue'
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'
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'
2024-10-21 14:43:37 +08:00
import SingleColumn from '@/views/demo/proTable/singleColumn.vue'
2024-10-28 13:25:45 +08:00
import Open from '@/views/demo/proTable/Open.vue'
2024-10-21 14:43:37 +08:00
import DoubleColumn from '@/views/demo/proTable/doubleColumn.vue'
2024-10-28 13:25:45 +08:00
import { useViewSize } from '@/hooks/useViewSize'
const { popupBaseView, viewWidth, viewHeight } = useViewSize()
2024-10-22 14:47:25 +08:00
const dictStore = useDictStore()
import {
getUserList,
deleteUser,
changeUserStatus,
exportUserInfo,
BatchAddUser,
} from '@/api/user/user'
2024-10-17 15:09:27 +08:00
import { ElMessageBox } from 'element-plus'
2024-10-22 14:47:25 +08:00
const userData = userDataList
2024-10-21 14:43:37 +08:00
const singleColumn = ref()
const doubleColumn = ref()
2024-10-28 13:25:45 +08:00
const openView = ref()
// ProTable 实例
const proTable = ref<ProTableInstance>()
// 如果表格需要初始化请求参数,直接定义传给 ProTable (之后每次请求都会自动带上该参数,此参数更改之后也会一直带上,改变此参数会自动刷新表格数据)
const initParam = reactive({ type: 1 })
// dataCallback 是对于返回的表格数据做处理,如果你后台返回的数据不是 list && total 这些字段,可以在这里进行处理成这些字段
// 或者直接去 hooks/useTable.ts 文件中把字段改为你后端对应的就行
const dataCallback = (data: any) => {
return {
list: data.list,
total: data.total,
}
}
// 如果你想在请求之前对当前请求参数做一些操作可以自定义如下函数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()
// 表格配置项
const columns = reactive<ColumnProps<User.ResUserList>[]>([
{ type: 'selection', fixed: 'left', width: 70 },
{ type: 'index', fixed: 'left', width: 70, label: '序号' },
{
prop: 'username',
2024-10-16 15:33:14 +08:00
label: '姓名',
width: 120,
2024-10-22 14:47:25 +08:00
search: { el: 'input' },
},
{
prop: 'gender',
label: '性别',
// 字典数据(本地数据)
enum: dictStore.getDictData('sex'),
search: { el: 'select', props: { filterable: true } },
fieldNames: { label: 'label', value: 'code' },
},
{
prop: 'age',
label: '年龄',
search: {
// 自定义 search 显示内容
render: ({ searchParam }) => {
return (
2024-10-28 13:25:45 +08:00
<div class='flx-center'>
<el-input vModel_trim={searchParam.minAge} placeholder='最小年龄' />
<span class='mr10 ml10'>-</span>
<el-input vModel_trim={searchParam.maxAge} placeholder='最大年龄' />
</div>
)
},
},
},
2024-10-28 13:25:45 +08:00
{ prop: 'idCard', label: '身份证号' },
{ prop: 'email', label: '邮箱' },
2024-10-16 15:33:14 +08:00
{ prop: 'address', label: '居住地址', width: 120 },
{
prop: 'status',
2024-10-16 15:33:14 +08:00
label: '状态',
enum: dictStore.getDictData('status'),
search: { el: 'tree-select', props: { filterable: true } },
fieldNames: { label: 'userLabel', value: 'userStatus' },
render: scope => {
return (
2024-10-28 13:25:45 +08:00
<>
{BUTTONS.value.status ? (
<el-switch
model-value={scope.row.status}
active-text={scope.row.status ? '启用' : '禁用'}
active-value={1}
inactive-value={0}
onClick={() => changeStatus(scope.row)}
/>
) : (
<el-tag type={scope.row.status ? 'success' : 'danger'}>{scope.row.status ? '启用' : '禁用'}</el-tag>
)}
</>
)
},
},
{
prop: 'createTime',
label: '创建时间',
width: 180,
search: {
el: 'date-picker',
span: 1,
2024-10-16 15:33:14 +08:00
props: { type: 'daterange', valueFormat: 'YYYY-MM-DD' },
defaultValue: ['2024-11-12', '2024-12-12'],
},
},
{ prop: 'operation', label: '操作', fixed: 'right', width: 330 },
])
2024-10-28 13:25:45 +08:00
// 下钻
const deleteAccount = async () => {
openView.value.open('测试弹出框')
}
// 批量删除用户信息
const batchDelete = async (id: string[]) => {
await useHandleData(deleteUser, { id }, '删除所选用户信息')
proTable.value?.clearSelection()
proTable.value?.getTableList()
}
// 重置用户密码
const resetPass = async (params: User.ResUserList) => {
2024-10-21 14:43:37 +08:00
// await useHandleData(resetUserPassWord, { id: params.id }, `重置【${params.username}】用户密码`)
// proTable.value?.getTableList()
2024-10-22 14:47:25 +08:00
doubleColumn.value.open('双列弹出框')
}
// 切换用户状态
const changeStatus = async (row: User.ResUserList) => {
await useHandleData(changeUserStatus, {
id: row.id,
status: row.status == 1 ? 0 : 1,
}, `切换【${row.username}】用户状态`)
proTable.value?.getTableList()
}
// 导出用户列表
const downloadFile = async () => {
ElMessageBox.confirm('确认导出用户数据?', '温馨提示', { type: 'warning' }).then(() =>
2024-10-28 13:25:45 +08:00
useDownload(exportUserInfo, '用户列表', proTable.value?.searchParam),
)
}
// 批量添加用户
const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
const batchAdd = () => {
const params = {
title: '用户',
tempApi: exportUserInfo,
importApi: BatchAddUser,
getTableList: proTable.value?.getTableList,
}
dialogRef.value?.acceptParams(params)
}
// 打开 drawer(新增、查看、编辑)
const openDrawer = (title: string, row: Partial<User.ResUserList> = {}) => {
2024-10-22 14:47:25 +08:00
singleColumn.value.open('单列弹出框')
}
2024-10-17 15:09:27 +08:00
</script>