|
@@ -1,44 +1,43 @@
|
|
|
interface Inew {
|
|
|
- label: string;
|
|
|
- value: string;
|
|
|
+ label: string;
|
|
|
+ value: string;
|
|
|
}
|
|
|
|
|
|
const searchConfig = {
|
|
|
- pageName: 'rentalCompany',
|
|
|
- formItems: [
|
|
|
- // {
|
|
|
- // label: '状态',
|
|
|
- // prop: 'status',
|
|
|
- // type: 'select',
|
|
|
- // options: [] as Array<Inew>,
|
|
|
- // placeholder: '请选择状态',
|
|
|
- // },
|
|
|
- {
|
|
|
- label: '公司编码',
|
|
|
- prop: 'rentalCompanyCode',
|
|
|
- type: 'input',
|
|
|
- placeholder: '请输入公司编码',
|
|
|
- },
|
|
|
- {
|
|
|
- label: '公司名称',
|
|
|
- prop: 'rentalCompanyName',
|
|
|
- type: 'input',
|
|
|
- placeholder: '请输入公司名称',
|
|
|
- },
|
|
|
- {
|
|
|
- label: '关联部门',
|
|
|
- prop: 'deptName',
|
|
|
- type: 'input',
|
|
|
- placeholder: '请输入关联部门',
|
|
|
- },
|
|
|
- {
|
|
|
- label: '创建时间',
|
|
|
- prop: 'createDate',
|
|
|
- type: 'date-picker',
|
|
|
- placeholder: '请选择创建时间',
|
|
|
- },
|
|
|
-
|
|
|
- ],
|
|
|
+ pageName: 'rentalCompany',
|
|
|
+ formItems: [
|
|
|
+ {
|
|
|
+ label: '通报类型',
|
|
|
+ prop: 'status',
|
|
|
+ type: 'select',
|
|
|
+ options: [] as Array<Inew>,
|
|
|
+ placeholder: '请选择状态',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '公司编码',
|
|
|
+ prop: 'rentalCompanyCode',
|
|
|
+ type: 'input',
|
|
|
+ placeholder: '请输入公司编码',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '公司名称',
|
|
|
+ prop: 'rentalCompanyName',
|
|
|
+ type: 'input',
|
|
|
+ placeholder: '请输入公司名称',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '关联部门',
|
|
|
+ prop: 'deptName',
|
|
|
+ type: 'input',
|
|
|
+ placeholder: '请输入关联部门',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '创建时间',
|
|
|
+ prop: 'createDate',
|
|
|
+ type: 'date-picker',
|
|
|
+ placeholder: '请选择创建时间',
|
|
|
+ },
|
|
|
+ ],
|
|
|
};
|
|
|
|
|
|
export default searchConfig;
|