Files
iot-device-management-frontend/apps/web-ele/src/views/system/social/user/data.ts

102 lines
2.2 KiB
TypeScript
Raw Normal View History

2025-05-11 23:16:56 +08:00
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
2025-05-11 23:16:56 +08:00
2025-09-05 12:24:58 +08:00
import { DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
2025-05-11 23:16:56 +08:00
2025-09-05 12:24:58 +08:00
import { getRangePickerDefaultProps } from '#/utils';
2025-05-11 23:16:56 +08:00
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'type',
label: '社交平台',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.SYSTEM_SOCIAL_TYPE, 'number'),
placeholder: '请选择社交平台',
clearable: true,
2025-05-11 23:16:56 +08:00
},
},
{
fieldName: 'nickname',
label: '用户昵称',
component: 'Input',
componentProps: {
placeholder: '请输入用户昵称',
clearable: true,
2025-05-11 23:16:56 +08:00
},
},
{
fieldName: 'openid',
label: '社交 openid',
component: 'Input',
componentProps: {
placeholder: '请输入社交 openid',
clearable: true,
2025-05-11 23:16:56 +08:00
},
},
{
fieldName: 'createTime',
label: '创建时间',
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
clearable: true,
2025-05-11 23:16:56 +08:00
},
},
];
}
/** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions['columns'] {
2025-05-11 23:16:56 +08:00
return [
{
field: 'type',
title: '社交平台',
minWidth: 100,
2025-05-11 23:16:56 +08:00
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.SYSTEM_SOCIAL_TYPE },
},
},
{
field: 'openid',
title: '社交 openid',
minWidth: 180,
},
{
field: 'nickname',
title: '用户昵称',
minWidth: 120,
},
{
field: 'avatar',
title: '用户头像',
minWidth: 100,
2025-05-11 23:16:56 +08:00
cellRender: {
name: 'CellImage',
},
},
{
field: 'createTime',
title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
field: 'updateTime',
title: '更新时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
title: '操作',
width: 120,
2025-05-11 23:16:56 +08:00
fixed: 'right',
slots: { default: 'actions' },
2025-05-11 23:16:56 +08:00
},
];
}