You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
2.5 KiB
132 lines
2.5 KiB
import { BasicColumn } from '/@/components/Table'; |
|
import { FormSchema } from '/@/components/Table'; |
|
|
|
/** 表格列配置 */ |
|
export const columns: BasicColumn[] = [ |
|
{ |
|
title: '名称', |
|
dataIndex: 'userName' |
|
}, |
|
{ |
|
title: '是否播放声音', |
|
dataIndex: 'playSound', |
|
customRender: ({record}) => { |
|
return ~~record?.playSound === 0 ? '是' : '否'; |
|
} |
|
}, |
|
{ |
|
title: '是否震动', |
|
dataIndex: 'playVibrate', |
|
customRender: ({record}) => { |
|
return ~~record?.playVibrate === 0 ? '是' : '否'; |
|
} |
|
}, |
|
{ |
|
title: '是否闪光', |
|
dataIndex: 'playLights', |
|
customRender: ({record}) => { |
|
return ~~record?.playLights === 0 ? '是' : '否'; |
|
} |
|
}, |
|
{ |
|
title: '创建人', |
|
dataIndex: 'createByName' |
|
}, |
|
{ |
|
title: '创建时间', |
|
dataIndex: 'createTime', |
|
width: 200 |
|
} |
|
]; |
|
|
|
/** 搜索表单配置 */ |
|
export const searchFormSchema: FormSchema[] = [ |
|
{ |
|
field: 'userName', |
|
label: '名称', |
|
component: 'Input', |
|
componentProps: { |
|
placeholder: '请输入名称', |
|
}, |
|
colProps: { span: 6 } |
|
} |
|
]; |
|
|
|
/** 表单配置 */ |
|
export const formSchema: FormSchema[] = [ |
|
{ |
|
field: 'id', |
|
label: 'ID', |
|
component: 'Input', |
|
show: false |
|
}, |
|
{ |
|
field: 'toUserId', |
|
label: '对方用户id', |
|
component: 'Input', |
|
show: false |
|
}, |
|
{ |
|
field: 'fromUserId', |
|
label: '发送方用户id', |
|
component: 'Input', |
|
show: false |
|
}, |
|
{ |
|
field: 'userName', |
|
label: '名称', |
|
component: 'Input', |
|
required: true, |
|
componentProps: { |
|
disabled: true |
|
}, |
|
}, |
|
{ |
|
field: 'playSound', |
|
label: '是否播放声音', |
|
component: 'RadioGroup', |
|
required: true, |
|
defaultValue: '0', |
|
componentProps: { |
|
options: [ |
|
{ label: '是', value: '0' }, |
|
{ label: '否', value: '1' } |
|
] |
|
}, |
|
colProps: { |
|
span: 12 |
|
} |
|
}, |
|
{ |
|
field: 'playVibrate', |
|
label: '是否震动', |
|
component: 'RadioGroup', |
|
required: true, |
|
defaultValue: '0', |
|
componentProps: { |
|
options: [ |
|
{ label: '是', value: '0' }, |
|
{ label: '否', value: '1' } |
|
] |
|
}, |
|
colProps: { |
|
span: 12 |
|
} |
|
}, |
|
{ |
|
field: 'playLights', |
|
label: '是否闪光', |
|
component: 'RadioGroup', |
|
required: true, |
|
defaultValue: '0', |
|
componentProps: { |
|
options: [ |
|
{ label: '是', value: '0' }, |
|
{ label: '否', value: '1' } |
|
] |
|
}, |
|
colProps: { |
|
span: 12 |
|
} |
|
}, |
|
];
|
|
|