Browse Source

Pull request #169: DEC-13302 fix:页面子tab的标题样式

Merge in DEC/decision-webui-dcm from ~FRANK.QIU/decision-webui-dcm:release/10.0 to release/10.0

* commit '7bdb3a8d48248c1f946f8021d24606ed3e32c68a':
  DEC-13302 fix:页面子tab的标题样式
research/10.0 10.0.6
Frank.Qiu 5 years ago
parent
commit
0fc01e00f9
  1. 9
      src/modules/title/title.ts

9
src/modules/title/title.ts

@ -1,4 +1,4 @@
import { LeftRightVerticalAdapt, LinearSegment, Tab } from 'ui'; import { LeftRightVerticalAdapt, VerticalAdapt, LinearSegment, Tab } from 'ui';
import { shortcut, store } from '@core/core'; import { shortcut, store } from '@core/core';
import { TitleModel, TitleModelXtype } from './title.model'; import { TitleModel, TitleModelXtype } from './title.model';
import { PAGE_INDEX } from '@constants/constant'; import { PAGE_INDEX } from '@constants/constant';
@ -32,9 +32,12 @@ export class Title extends BI.Widget {
left: [ left: [
{ {
type: LinearSegment, type: LinearSegment,
cls: 'bi-font-bold',
height: 40, height: 40,
hgap: 10, hgap: 10,
width: 250, layouts: [{
type: VerticalAdapt,
}],
ref: (_ref: any) => { ref: (_ref: any) => {
this.linearSegment = _ref; this.linearSegment = _ref;
}, },
@ -43,10 +46,12 @@ export class Title extends BI.Widget {
text: BI.i18nText('Dec-Dcm_Connection_Management'), text: BI.i18nText('Dec-Dcm_Connection_Management'),
selected: true, selected: true,
value: PAGE_INDEX.CONNECTION, value: PAGE_INDEX.CONNECTION,
hgap: 15,
}, },
{ {
text: BI.i18nText('Dec-Dcm_Pool_Connection_Management'), text: BI.i18nText('Dec-Dcm_Pool_Connection_Management'),
value: PAGE_INDEX.POOL, value: PAGE_INDEX.POOL,
hgap: 15,
}, },
], ],
listeners: [{ listeners: [{

Loading…
Cancel
Save