From e0091dcda3eea722dc76e4a662da59f38a1c5589 Mon Sep 17 00:00:00 2001 From: congqiu Date: Fri, 23 Aug 2019 09:59:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=20fix:=20=E5=85=88=E7=A6=81?= =?UTF-8?q?=E7=94=A8=E4=BA=86=E8=BE=93=E5=85=A5ip=E7=AB=AF=E5=8F=A3?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pages/maintain/forms/components/form.jdbc.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/pages/maintain/forms/components/form.jdbc.ts b/src/modules/pages/maintain/forms/components/form.jdbc.ts index d077e3c..3dbb7a1 100644 --- a/src/modules/pages/maintain/forms/components/form.jdbc.ts +++ b/src/modules/pages/maintain/forms/components/form.jdbc.ts @@ -116,6 +116,7 @@ export class FormJdbc extends BI.Widget { allowBlank: true, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Database_Name'), value: '', // TODO: 数据库名称待适配 + disabled: true, ref: (_ref: any) => { this.form.database = _ref; }, @@ -130,6 +131,7 @@ export class FormJdbc extends BI.Widget { allowBlank: true, value: host, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Host'), + disabled: true, ref: (_ref: any) => { this.form.host = _ref; }, @@ -150,6 +152,7 @@ export class FormJdbc extends BI.Widget { allowBlank: true, value: port === 0 ? '' : port, watermark: BI.i18nText('Dec-Dcm_Connection_Form_Database_Port'), + disabled: true, ref: (_ref: any) => { this.form.port = _ref; },