2022-11-15 14:30:10 +08:00
|
|
|
|
import { computed, nextTick, reactive } from 'vue'
|
2022-11-17 22:55:09 +08:00
|
|
|
|
import { SizeType, VxeGridProps, VxeTablePropTypes } from 'vxe-table'
|
2022-11-07 13:25:23 +08:00
|
|
|
|
import { useAppStore } from '@/store/modules/app'
|
2022-11-07 18:13:04 +08:00
|
|
|
|
import { VxeAllSchemas } from './useVxeCrudSchemas'
|
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
|
import { useMessage } from '@/hooks/web/useMessage'
|
2022-11-15 14:51:39 +08:00
|
|
|
|
import download from '@/utils/download'
|
2022-11-07 18:13:04 +08:00
|
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
|
|
|
|
interface UseVxeGridConfig<T = any> {
|
|
|
|
|
allSchemas: VxeAllSchemas
|
2022-11-17 22:55:09 +08:00
|
|
|
|
treeConfig?: VxeTablePropTypes.TreeConfig
|
2022-11-07 18:13:04 +08:00
|
|
|
|
getListApi: (option: any) => Promise<T>
|
2022-11-16 10:28:28 +08:00
|
|
|
|
deleteApi?: (option: any) => Promise<T>
|
2022-11-07 18:13:04 +08:00
|
|
|
|
exportListApi?: (option: any) => Promise<T>
|
2022-11-17 00:22:38 +08:00
|
|
|
|
exportName?: string // 导出文件夹名称
|
|
|
|
|
queryParams?: any // 其他查询参数
|
2022-11-07 18:13:04 +08:00
|
|
|
|
}
|
2022-11-07 13:25:23 +08:00
|
|
|
|
|
|
|
|
|
const appStore = useAppStore()
|
|
|
|
|
|
|
|
|
|
const currentSize = computed(() => {
|
2022-11-10 13:15:55 +08:00
|
|
|
|
let resSize: SizeType = 'small'
|
|
|
|
|
const appsize = appStore.getCurrentSize
|
|
|
|
|
switch (appsize) {
|
|
|
|
|
case 'large':
|
|
|
|
|
resSize = 'medium'
|
|
|
|
|
break
|
|
|
|
|
case 'default':
|
|
|
|
|
resSize = 'small'
|
|
|
|
|
break
|
|
|
|
|
case 'small':
|
|
|
|
|
resSize = 'mini'
|
|
|
|
|
break
|
2022-11-07 13:25:23 +08:00
|
|
|
|
}
|
2022-11-10 13:15:55 +08:00
|
|
|
|
return resSize
|
2022-11-07 13:25:23 +08:00
|
|
|
|
})
|
2022-11-03 14:33:30 +08:00
|
|
|
|
|
2022-11-07 18:13:04 +08:00
|
|
|
|
export const useVxeGrid = <T = any>(config?: UseVxeGridConfig<T>) => {
|
2022-11-15 15:22:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* grid options 初始化
|
|
|
|
|
*/
|
2022-11-03 14:33:30 +08:00
|
|
|
|
const gridOptions = reactive<VxeGridProps>({
|
2022-11-07 18:13:04 +08:00
|
|
|
|
loading: true,
|
2022-11-10 13:15:55 +08:00
|
|
|
|
size: currentSize as any,
|
2022-11-15 18:07:20 +08:00
|
|
|
|
height: 800,
|
2022-11-03 14:33:30 +08:00
|
|
|
|
rowConfig: {
|
2022-11-07 18:13:04 +08:00
|
|
|
|
isCurrent: true, // 当鼠标点击行时,是否要高亮当前行
|
|
|
|
|
isHover: true // 当鼠标移到行时,是否要高亮当前行
|
|
|
|
|
},
|
2022-11-03 14:33:30 +08:00
|
|
|
|
toolbarConfig: {
|
|
|
|
|
slots: { buttons: 'toolbar_buttons' }
|
|
|
|
|
},
|
|
|
|
|
printConfig: {
|
2022-11-07 18:13:04 +08:00
|
|
|
|
columns: config?.allSchemas.printSchema
|
2022-11-03 14:33:30 +08:00
|
|
|
|
},
|
|
|
|
|
formConfig: {
|
2022-11-13 14:40:51 +08:00
|
|
|
|
enabled: true,
|
2022-11-03 14:33:30 +08:00
|
|
|
|
titleWidth: 100,
|
|
|
|
|
titleAlign: 'right',
|
2022-11-07 18:13:04 +08:00
|
|
|
|
items: config?.allSchemas.searchSchema
|
2022-11-03 14:33:30 +08:00
|
|
|
|
},
|
2022-11-07 18:13:04 +08:00
|
|
|
|
columns: config?.allSchemas.tableSchema,
|
2022-11-03 14:33:30 +08:00
|
|
|
|
proxyConfig: {
|
|
|
|
|
seq: true, // 启用动态序号代理(分页之后索引自动计算为当前页的起始序号)
|
|
|
|
|
form: true, // 启用表单代理,当点击表单提交按钮时会自动触发 reload 行为
|
|
|
|
|
props: { result: 'list', total: 'total' },
|
|
|
|
|
ajax: {
|
|
|
|
|
query: ({ page, form }) => {
|
2022-11-17 00:22:38 +08:00
|
|
|
|
let queryParams: any = Object.assign({}, JSON.parse(JSON.stringify(form)))
|
|
|
|
|
if (config?.queryParams) {
|
|
|
|
|
queryParams = Object.assign(queryParams, config.queryParams)
|
|
|
|
|
}
|
2022-11-17 22:55:09 +08:00
|
|
|
|
if (!config?.treeConfig) {
|
|
|
|
|
queryParams.pageSize = page.pageSize
|
|
|
|
|
queryParams.pageNo = page.currentPage
|
|
|
|
|
}
|
2022-11-07 15:10:48 +08:00
|
|
|
|
gridOptions.loading = false
|
2022-11-03 14:33:30 +08:00
|
|
|
|
return new Promise(async (resolve) => {
|
2022-11-07 18:13:04 +08:00
|
|
|
|
resolve(await config?.getListApi(queryParams))
|
2022-11-03 14:33:30 +08:00
|
|
|
|
})
|
2022-11-13 13:16:11 +08:00
|
|
|
|
},
|
|
|
|
|
queryAll: ({ form }) => {
|
|
|
|
|
const queryParams = Object.assign({}, JSON.parse(JSON.stringify(form)))
|
|
|
|
|
return new Promise(async (resolve) => {
|
|
|
|
|
if (config?.exportListApi) {
|
|
|
|
|
resolve(await config?.exportListApi(queryParams))
|
|
|
|
|
} else {
|
|
|
|
|
resolve(await config?.getListApi(queryParams))
|
|
|
|
|
}
|
|
|
|
|
})
|
2022-11-03 14:33:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-11-13 13:16:11 +08:00
|
|
|
|
},
|
|
|
|
|
exportConfig: {
|
|
|
|
|
filename: config?.exportName,
|
|
|
|
|
// 默认选中类型
|
|
|
|
|
type: 'csv',
|
|
|
|
|
// 自定义数据量列表
|
|
|
|
|
modes: ['current', 'all'],
|
|
|
|
|
columns: config?.allSchemas.printSchema
|
2022-11-03 14:33:30 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
2022-11-13 13:16:11 +08:00
|
|
|
|
|
2022-11-17 22:55:09 +08:00
|
|
|
|
if (config?.treeConfig) {
|
|
|
|
|
gridOptions.treeConfig = config.treeConfig
|
|
|
|
|
} else {
|
|
|
|
|
gridOptions.pagerConfig = {
|
|
|
|
|
border: false, // 带边框
|
|
|
|
|
background: true, // 带背景颜色
|
|
|
|
|
perfect: false, // 配套的样式
|
|
|
|
|
pageSize: 10, // 每页大小
|
|
|
|
|
pagerCount: 7, // 显示页码按钮的数量
|
|
|
|
|
autoHidden: false, // 当只有一页时自动隐藏
|
|
|
|
|
pageSizes: [5, 10, 20, 30, 50, 100], // 每页大小选项列表
|
|
|
|
|
layouts: [
|
|
|
|
|
'PrevJump',
|
|
|
|
|
'PrevPage',
|
|
|
|
|
'JumpNumber',
|
|
|
|
|
'NextPage',
|
|
|
|
|
'NextJump',
|
|
|
|
|
'Sizes',
|
|
|
|
|
'FullJump',
|
|
|
|
|
'Total'
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-15 15:22:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 刷新列表
|
|
|
|
|
* @param ref
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
2022-11-17 00:22:38 +08:00
|
|
|
|
const getList = async (ref) => {
|
2022-11-15 15:22:31 +08:00
|
|
|
|
if (!ref) {
|
|
|
|
|
console.error('未传入gridRef')
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-11-15 14:30:10 +08:00
|
|
|
|
await nextTick()
|
2022-11-15 15:22:31 +08:00
|
|
|
|
ref.value.commitProxy('query')
|
2022-11-15 14:30:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取查询参数
|
|
|
|
|
const getSearchData = async (ref) => {
|
2022-11-15 15:22:31 +08:00
|
|
|
|
if (!ref) {
|
|
|
|
|
console.error('未传入gridRef')
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-11-15 14:30:10 +08:00
|
|
|
|
await nextTick()
|
|
|
|
|
const queryParams = Object.assign(
|
|
|
|
|
{},
|
2022-11-15 15:22:31 +08:00
|
|
|
|
JSON.parse(JSON.stringify(ref.value.getProxyInfo()?.form))
|
2022-11-15 14:30:10 +08:00
|
|
|
|
)
|
|
|
|
|
return queryParams
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-15 15:22:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 删除
|
|
|
|
|
* @param ref
|
|
|
|
|
* @param ids rowid
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
2022-11-16 10:28:28 +08:00
|
|
|
|
const deleteData = async (ref, ids: string | number) => {
|
2022-11-15 15:22:31 +08:00
|
|
|
|
if (!ref) {
|
|
|
|
|
console.error('未传入gridRef')
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-11-16 10:28:28 +08:00
|
|
|
|
if (!config?.deleteApi) {
|
2022-11-15 15:22:31 +08:00
|
|
|
|
console.error('未传入delListApi')
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-11-15 14:30:10 +08:00
|
|
|
|
await nextTick()
|
2022-11-10 14:38:16 +08:00
|
|
|
|
return new Promise(async () => {
|
2022-11-15 14:30:10 +08:00
|
|
|
|
message
|
|
|
|
|
.delConfirm()
|
|
|
|
|
.then(() => {
|
2022-11-16 10:28:28 +08:00
|
|
|
|
config?.deleteApi && config?.deleteApi(ids)
|
2022-11-15 14:30:10 +08:00
|
|
|
|
message.success(t('common.delSuccess'))
|
|
|
|
|
})
|
|
|
|
|
.finally(async () => {
|
|
|
|
|
// 刷新列表
|
2022-11-15 15:22:31 +08:00
|
|
|
|
ref.value.commitProxy('query')
|
2022-11-15 14:30:10 +08:00
|
|
|
|
})
|
2022-11-07 18:13:04 +08:00
|
|
|
|
})
|
|
|
|
|
}
|
2022-11-15 15:22:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 导出
|
|
|
|
|
* @param ref
|
|
|
|
|
* @param fileName 文件名,默认excel.xls
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
2022-11-15 14:51:39 +08:00
|
|
|
|
const exportList = async (ref, fileName?: string) => {
|
2022-11-15 15:22:31 +08:00
|
|
|
|
if (!ref) {
|
|
|
|
|
console.error('未传入gridRef')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (!config?.exportListApi) {
|
|
|
|
|
console.error('未传入exportListApi')
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-11-15 14:51:39 +08:00
|
|
|
|
await nextTick()
|
|
|
|
|
const queryParams = Object.assign(
|
|
|
|
|
{},
|
|
|
|
|
JSON.parse(JSON.stringify(ref.value?.getProxyInfo()?.form))
|
|
|
|
|
)
|
|
|
|
|
message.exportConfirm().then(async () => {
|
|
|
|
|
const res = await (config?.exportListApi && config?.exportListApi(queryParams))
|
|
|
|
|
download.excel(res as unknown as Blob, fileName ? fileName : 'excel.xls')
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-11-15 15:22:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 表格最大/最小化
|
|
|
|
|
* @param ref
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
|
|
|
|
const zoom = async (ref) => {
|
|
|
|
|
if (!ref) {
|
|
|
|
|
console.error('未传入gridRef')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
await nextTick()
|
|
|
|
|
ref.value.zoom(!ref.value.isMaximized())
|
|
|
|
|
}
|
2022-11-13 14:40:51 +08:00
|
|
|
|
|
2022-11-07 18:13:04 +08:00
|
|
|
|
return {
|
|
|
|
|
gridOptions,
|
2022-11-17 00:22:38 +08:00
|
|
|
|
getList,
|
2022-11-15 14:30:10 +08:00
|
|
|
|
getSearchData,
|
2022-11-16 10:28:28 +08:00
|
|
|
|
deleteData,
|
2022-11-15 15:22:31 +08:00
|
|
|
|
exportList,
|
|
|
|
|
zoom
|
2022-11-07 18:13:04 +08:00
|
|
|
|
}
|
2022-11-03 14:33:30 +08:00
|
|
|
|
}
|