159 lines
3.4 KiB
Vue
159 lines
3.4 KiB
Vue
import { BasicColumn } from '/@/components/Table';
|
|
import { FormSchema } from '/@/components/Form';
|
|
import { rules } from '/@/utils/helper/validator';
|
|
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '钉钉事件ID',
|
|
align: 'center',
|
|
dataIndex: 'eventId',
|
|
width: 180,
|
|
},
|
|
{
|
|
title: '事件类型',
|
|
align: 'center',
|
|
dataIndex: 'eventType',
|
|
width: 160,
|
|
},
|
|
{
|
|
title: '审批实例ID',
|
|
align: 'center',
|
|
dataIndex: 'processInstanceId',
|
|
width: 200,
|
|
},
|
|
{
|
|
title: '接收时间',
|
|
align: 'center',
|
|
dataIndex: 'receivedTime',
|
|
width: 160,
|
|
},
|
|
{
|
|
title: '是否已处理',
|
|
align: 'center',
|
|
dataIndex: 'processed_dictText',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '关联业务表',
|
|
align: 'center',
|
|
dataIndex: 'bizTable',
|
|
width: 140,
|
|
},
|
|
{
|
|
title: '关联业务记录ID',
|
|
align: 'center',
|
|
dataIndex: 'bizDataId',
|
|
width: 160,
|
|
},
|
|
{
|
|
title: '关联审批台账ID',
|
|
align: 'center',
|
|
dataIndex: 'recordId',
|
|
width: 160,
|
|
},
|
|
];
|
|
|
|
export const searchFormSchema: FormSchema[] = [
|
|
{
|
|
label: '事件类型',
|
|
field: 'eventType',
|
|
component: 'Input',
|
|
colProps: { span: 6 },
|
|
},
|
|
{
|
|
label: '审批实例ID',
|
|
field: 'processInstanceId',
|
|
component: 'Input',
|
|
colProps: { span: 6 },
|
|
},
|
|
{
|
|
label: '是否已处理',
|
|
field: 'processed',
|
|
component: 'JDictSelectTag',
|
|
componentProps: { dictCode: 'yn' },
|
|
colProps: { span: 6 },
|
|
},
|
|
{
|
|
label: '接收时间',
|
|
field: 'receivedTime',
|
|
component: 'RangePicker',
|
|
componentProps: { valueType: 'Date', showTime: true, format: 'YYYY-MM-DD HH:mm:ss' },
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '关联业务表',
|
|
field: 'bizTable',
|
|
component: 'Input',
|
|
colProps: { span: 6 },
|
|
},
|
|
];
|
|
|
|
export const formSchema: FormSchema[] = [
|
|
{ label: '', field: 'id', component: 'Input', show: false },
|
|
{
|
|
label: '钉钉事件ID',
|
|
field: 'eventId',
|
|
component: 'Input',
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '事件类型',
|
|
field: 'eventType',
|
|
component: 'Input',
|
|
componentProps: { placeholder: '如 bpms_instance_change' },
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '审批实例ID',
|
|
field: 'processInstanceId',
|
|
component: 'Input',
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '接收时间',
|
|
field: 'receivedTime',
|
|
component: 'DatePicker',
|
|
componentProps: { showTime: true, format: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'YYYY-MM-DD HH:mm:ss', style: { width: '100%' } },
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '是否已处理',
|
|
field: 'processed',
|
|
component: 'JDictSelectTag',
|
|
componentProps: { dictCode: 'yn', placeholder: '请选择' },
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '关联业务表',
|
|
field: 'bizTable',
|
|
component: 'Input',
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '关联业务记录ID',
|
|
field: 'bizDataId',
|
|
component: 'Input',
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '关联审批台账ID',
|
|
field: 'recordId',
|
|
component: 'Input',
|
|
colProps: { span: 12 },
|
|
},
|
|
{
|
|
label: '原始推送数据',
|
|
field: 'rawData',
|
|
component: 'InputTextArea',
|
|
componentProps: { rows: 6, placeholder: 'JSON 原始推送内容' },
|
|
colProps: { span: 24 },
|
|
},
|
|
{
|
|
label: '处理备注',
|
|
field: 'processRemark',
|
|
component: 'InputTextArea',
|
|
componentProps: { rows: 3, placeholder: '处理结果或失败原因' },
|
|
colProps: { span: 24 },
|
|
},
|
|
];
|