From 9f1620c9f8ccb687c8c18d33dce6b1f0568756ad Mon Sep 17 00:00:00 2001 From: xuziqiang <1344691446@qq.com> Date: Fri, 28 Jun 2024 11:45:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4placeholder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hx-op/src/view/organizationManage/enterpriseManage/config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hx-op/src/view/organizationManage/enterpriseManage/config.ts b/hx-op/src/view/organizationManage/enterpriseManage/config.ts index 1cbda4b..592d7a3 100644 --- a/hx-op/src/view/organizationManage/enterpriseManage/config.ts +++ b/hx-op/src/view/organizationManage/enterpriseManage/config.ts @@ -329,22 +329,26 @@ export const tableConfig = ({ field: 'orgCode', label: '组织ID', component: 'NsInput', + componentProps: { placeholder: '请输入组织ID' }, }, { field: 'cliqueName', label: '集团名称', component: 'NsInput', + componentProps: { placeholder: '请输入集团名称' }, }, { field: 'orgName', label: '组织名称', component: 'NsInput', + componentProps: { placeholder: '请输入组织名称' }, }, { field: 'status', label: '状态', component: 'NsSelect', componentProps: { + placeholder: '请选择状态', options: [ { label: '正常', @@ -363,7 +367,7 @@ export const tableConfig = ({ component: 'NsCascader', fieldMap: ['province', 'city', 'county'], componentProps: { - placeholder: '请选择', + placeholder: '请选择省市区', api: enterPrise.getArea, fieldNames: { label: 'regionName', value: 'regionName' }, showSearch: true,