Browse Source

Pull request #7401: REPORT-93628 && REPORT-93627

Merge in DEC/decision-webui-dcm from ~CRAWFORD.ZHOU/decision-webui-dcm:feature/x to feature/x

* commit '7e3dabb31659f4eee6c3d06982fdcc1f88bfd13a':
  REPORT-93627【迭代】【平台视觉适配】数据连接管理-模式选择处有滚动条 fix: 并非这次迭代导致,之前就有问题。 调整一下间距的设置大小,防止挤出滚动条
  REPORT-93628【迭代】【平台视觉适配】数据连接管理-修改下密码处的视觉展示 fix: 其实适配6.0的改动不涉及数据连接部分。 但是主风格改为输入框border-bottom风格了,那么这里也需要同步改一下。
feature/x
Crawford.Zhou-周旭 2 years ago
parent
commit
76d914f60b
  1. 11
      src/modules/pages/maintain/forms/components/form.jdbc.ts

11
src/modules/pages/maintain/forms/components/form.jdbc.ts

@ -423,7 +423,7 @@ export class FormJdbc extends BI.Widget {
{
type: BI.Editor.xtype,
$value: 'password',
cls: 'bi-border bi-border-radius',
cls: 'bi-border-bottom',
width: EDITOR_WIDTH,
height: EDITOR_HEIGHT,
allowBlank: true,
@ -573,6 +573,7 @@ export class FormJdbc extends BI.Widget {
forms: [
{
type: BI.VerticalLayout.xtype,
height: 55,
items: [
{
type: BI.FloatLeftLayout.xtype,
@ -595,9 +596,9 @@ export class FormJdbc extends BI.Widget {
},
{
type: BI.TextValueCombo.xtype,
_tgap: 15,
$value: 'schema',
width: EDITOR_WIDTH,
tgap: 15,
disabled: true,
value: schema,
items: schema ? [{ text: schema, value: schema }] : [],
@ -715,7 +716,7 @@ export class FormJdbc extends BI.Widget {
{
type: BI.Editor.xtype,
$value: 'temporary-file-pieces-limit',
cls: 'bi-border bi-border-radius',
cls: 'bi-border-bottom',
width: EDITOR_WIDTH,
height: EDITOR_HEIGHT,
allowBlank: true,
@ -735,7 +736,7 @@ export class FormJdbc extends BI.Widget {
{
type: BI.Editor.xtype,
$value: 'temporary-file-size-limit',
cls: 'bi-border bi-border-radius',
cls: 'bi-border-bottom',
width: EDITOR_WIDTH,
height: EDITOR_HEIGHT,
allowBlank: true,
@ -801,7 +802,7 @@ export class FormJdbc extends BI.Widget {
{
type: BI.Editor.xtype,
$value: 'hdfs-connection-address',
cls: 'bi-border bi-border-radius',
cls: 'bi-border-bottom',
width: EDITOR_WIDTH,
height: EDITOR_HEIGHT,
allowBlank: true,

Loading…
Cancel
Save