170 lines
3.8 KiB
TypeScript
170 lines
3.8 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
|
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { SystemNotifyMessageApi } from '#/api/system/notify/message';
|
|
|
|
import { getRangePickerDefaultProps } from '#/utils/date';
|
|
import { DICT_TYPE, getDictOptions } from '#/utils/dict';
|
|
|
|
import { useAccess } from '@vben/access';
|
|
|
|
const { hasAccessByCodes } = useAccess();
|
|
|
|
/** 列表的搜索表单 */
|
|
export function useGridFormSchema(): VbenFormSchema[] {
|
|
return [
|
|
{
|
|
fieldName: 'userId',
|
|
label: '用户编号',
|
|
component: 'Input',
|
|
componentProps: {
|
|
allowClear: true,
|
|
placeholder: '请输入用户编号',
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'userType',
|
|
label: '用户类型',
|
|
component: 'Select',
|
|
componentProps: {
|
|
allowClear: true,
|
|
options: getDictOptions(DICT_TYPE.USER_TYPE, 'number'),
|
|
placeholder: '请选择用户类型',
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'templateCode',
|
|
label: '模板编码',
|
|
component: 'Input',
|
|
componentProps: {
|
|
allowClear: true,
|
|
placeholder: '请输入模板编码',
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'templateType',
|
|
label: '模版类型',
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: getDictOptions(DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE, 'number'),
|
|
allowClear: true,
|
|
placeholder: '请选择模版类型',
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'createTime',
|
|
label: '创建时间',
|
|
component: 'RangePicker',
|
|
componentProps: {
|
|
...getRangePickerDefaultProps(),
|
|
allowClear: true,
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 列表的字段 */
|
|
export function useGridColumns<T = SystemNotifyMessageApi.SystemNotifyMessage>(
|
|
onActionClick: OnActionClickFn<T>,
|
|
): VxeTableGridOptions['columns'] {
|
|
return [
|
|
{
|
|
field: 'id',
|
|
title: '编号',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
field: 'userType',
|
|
title: '用户类型',
|
|
minWidth: 120,
|
|
cellRender: {
|
|
name: 'CellDict',
|
|
props: { type: DICT_TYPE.USER_TYPE },
|
|
},
|
|
},
|
|
{
|
|
field: 'userId',
|
|
title: '用户编号',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
field: 'templateCode',
|
|
title: '模板编码',
|
|
minWidth: 120,
|
|
},
|
|
{
|
|
field: 'templateNickname',
|
|
title: '发送人名称',
|
|
minWidth: 180,
|
|
},
|
|
{
|
|
field: 'templateContent',
|
|
title: '模版内容',
|
|
minWidth: 200,
|
|
},
|
|
{
|
|
field: 'templateParams',
|
|
title: '模版参数',
|
|
minWidth: 180,
|
|
formatter: ({ cellValue }) => {
|
|
try {
|
|
return JSON.stringify(cellValue);
|
|
} catch {
|
|
return '';
|
|
}
|
|
},
|
|
},
|
|
{
|
|
field: 'templateType',
|
|
title: '模版类型',
|
|
minWidth: 120,
|
|
cellRender: {
|
|
name: 'CellDict',
|
|
props: { type: DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE },
|
|
},
|
|
},
|
|
{
|
|
field: 'readStatus',
|
|
title: '是否已读',
|
|
minWidth: 100,
|
|
cellRender: {
|
|
name: 'CellDict',
|
|
props: { type: DICT_TYPE.INFRA_BOOLEAN_STRING },
|
|
},
|
|
},
|
|
{
|
|
field: 'readTime',
|
|
title: '阅读时间',
|
|
minWidth: 180,
|
|
formatter: 'formatDateTime',
|
|
},
|
|
{
|
|
field: 'createTime',
|
|
title: '创建时间',
|
|
minWidth: 180,
|
|
formatter: 'formatDateTime',
|
|
},
|
|
{
|
|
field: 'operation',
|
|
title: '操作',
|
|
minWidth: 180,
|
|
align: 'center',
|
|
fixed: 'right',
|
|
cellRender: {
|
|
attrs: {
|
|
nameField: 'id',
|
|
nameTitle: '站内信',
|
|
onClick: onActionClick,
|
|
},
|
|
name: 'CellOperation',
|
|
options: [
|
|
{
|
|
code: 'detail',
|
|
text: '详情',
|
|
show: hasAccessByCodes(['system:notify-message:query']),
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|
|
}
|