|
@@ -0,0 +1,55 @@
|
|
|
|
|
+interface Inew {
|
|
|
|
|
+ label: string;
|
|
|
|
|
+ value: string;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const searchConfig = {
|
|
|
|
|
+ pageName: 'ntlo',
|
|
|
|
|
+ pageListParams: {
|
|
|
|
|
+ industryType: '2',
|
|
|
|
|
+ belongsDeptIds: '',
|
|
|
|
|
+ },
|
|
|
|
|
+ formItems: [
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '姓名',
|
|
|
|
|
+ prop: 'contactName',
|
|
|
|
|
+ type: 'input',
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ placeholder: '请输入联络员姓名',
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '部门',
|
|
|
|
|
+ prop: 'belongsDept',
|
|
|
|
|
+ type: 'input',
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ placeholder: '请输入联络员部门',
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '联系电话',
|
|
|
|
|
+ prop: 'contactNumber',
|
|
|
|
|
+ type: 'input',
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ placeholder: '请输入联系电话',
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '短信接收人',
|
|
|
|
|
+ prop: 'msgRecipient',
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ type: 'select',
|
|
|
|
|
+ options: [] as Array<Inew>,
|
|
|
|
|
+ multiple: false,
|
|
|
|
|
+ placeholder: '请选择短信接收人',
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '通讯录状态',
|
|
|
|
|
+ prop: 'abStatus',
|
|
|
|
|
+ type: 'select',
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ options: [] as Array<Inew>,
|
|
|
|
|
+ multiple: false,
|
|
|
|
|
+ placeholder: '请选择通讯录状态',
|
|
|
|
|
+ },
|
|
|
|
|
+ ],
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+export default searchConfig;
|