From 41d323254dd215a9b482db6f2eb715a67e806c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <14166000+zhangtonghai@user.noreply.gitee.com> Date: Thu, 22 Aug 2024 10:49:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=AF=E5=8F=A3=E6=98=A0=E5=B0=84=20?= =?UTF-8?q?=E5=BE=80=E6=9D=A5=E5=8D=95=E4=BD=8D=20=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../baseinfo/infoclient/menu2/columns.tsx | 12 ++++++++++ src/views/mapping/station/columns.tsx | 22 ++++++++++++++----- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/src/views/baseinfo/infoclient/menu2/columns.tsx b/src/views/baseinfo/infoclient/menu2/columns.tsx index bdfbd6fa..cdf3912d 100644 --- a/src/views/baseinfo/infoclient/menu2/columns.tsx +++ b/src/views/baseinfo/infoclient/menu2/columns.tsx @@ -345,6 +345,18 @@ export const formSchema: FormSchema[] = [ // } // }, // }, + + { + field: 'isDefault', + label: '默认联系人', + component: 'Switch', + colProps: { span: 12 }, + defaultValue: false, + componentProps: { + checkedChildren: '是', + unCheckedChildren: '否', + }, + }, { field: 'isOperator', label: '是否为操作', diff --git a/src/views/mapping/station/columns.tsx b/src/views/mapping/station/columns.tsx index 568445de..372bc3a4 100644 --- a/src/views/mapping/station/columns.tsx +++ b/src/views/mapping/station/columns.tsx @@ -55,16 +55,20 @@ export const columns: BasicColumn[] = [ export const searchFormSchema: FormSchema[] = [ { - field: 'code', + field: 'linkId', label: '场站', colProps: { span: 6 }, component: 'ApiSelect', + componentProps: () => { return { api: GetYardClientList, labelField: 'shortName', - valueField: 'codeName', + valueField: 'id', resultField: 'data', + filterOption: (input: string, option: any) => { + return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0 + }, } }, }, @@ -79,13 +83,13 @@ export const formSchema: FormSchema[] = [ }, { label: '', - field: 'linkId', + field: 'code', component: 'Input', defaultValue: '', show: false, }, { - field: 'code', + field: 'linkId', label: '场站', component: 'ApiSelect', colProps: { span: 20 }, @@ -93,11 +97,17 @@ export const formSchema: FormSchema[] = [ return { api: GetYardClientList, labelField: 'shortName', - valueField: 'codeName', + valueField: 'id', resultField: 'data', + filterOption: (input: string, option: any) => { + console.log(input, option) + return option.shortName.toLowerCase().indexOf(input.toLowerCase()) >= 0 + }, onChange: (v, obj) => { if (obj) { - formModel['linkId'] = obj.id + console.log(obj) + + formModel['code'] = obj.codeName } }, }