| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- interface Inew {
- label: string;
- value: string;
- }
- const searchConfig = {
- pageName: 'lonm',
- formItems: [
- {
- label: '发布单位',
- prop: 'publishingUnit',
- slotName: 'publishingUnit',
- type: 'custom',
- options: [] as Array<Inew>,
- placeholder: '请选择发布单位',
- },
- {
- label: '通报类型',
- prop: 'notificationType',
- type: 'select',
- multiple: false,
- options: [] as Array<Inew>,
- placeholder: '请选择通报类型',
- },
- {
- label: '通报事项类别',
- prop: 'conm',
- type: 'select',
- multiple: false,
- options: [] as Array<Inew>,
- placeholder: '请选择通报事项类别',
- },
- {
- label: '通报事项',
- prop: 'notificationMatters',
- type: 'input',
- placeholder: '请输入通报事项',
- },
- {
- label: '通报依据',
- prop: 'notificationBasis',
- type: 'input',
- placeholder: '请输入通报依据',
- },
- {
- label: '发出单位',
- prop: 'deliveryUnit',
- type: 'select',
- multiple: false,
- options: [] as Array<Inew>,
- placeholder: '请选择发出单位',
- },
- {
- label: '接收单位',
- prop: 'lonmMiddle',
- type: 'input',
- placeholder: '请输入接收单位',
- },
- {
- label: '发布状态',
- prop: 'releaseStatus',
- type: 'select',
- multiple: false,
- options: [] as Array<Inew>,
- placeholder: '请选择接收单位',
- },
- {
- label: '创建时间',
- prop: 'createDates',
- type: 'date-picker',
- placeholder: '请选择创建时间',
- },
- {
- label: '创建人员',
- prop: 'createBy',
- type: 'input',
- placeholder: '请输入创建人员',
- },
- ],
- };
- export default searchConfig;
|