|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
import {Left, WidgetType, IconButton} from '@ui/index'; |
|
|
|
|
import TitleItem from './title_item/title_item.component'; |
|
|
|
|
import {isDesigner, closeWindow} from '@shared/crud/crud.request'; |
|
|
|
|
import {TAB_LINK_SET, TAB_LINK_POOL} from '@private/constants'; |
|
|
|
|
const className = 'fr.title'; |
|
|
|
|
const Widget: WidgetType = { |
|
|
|
|
render() { |
|
|
|
@ -12,6 +13,7 @@ const Widget: WidgetType = {
|
|
|
|
|
type: TitleItem, |
|
|
|
|
cls: 'dec-title-item-selected', |
|
|
|
|
text: BI.i18nText('Dec-Dcm_Connection_Management'), |
|
|
|
|
value: TAB_LINK_SET, |
|
|
|
|
ref: _ref => { |
|
|
|
|
this.ConnectSet = _ref; |
|
|
|
|
}, |
|
|
|
@ -22,6 +24,7 @@ const Widget: WidgetType = {
|
|
|
|
|
{ |
|
|
|
|
type: TitleItem, |
|
|
|
|
text: BI.i18nText('Dec-Dcm_Pool_Connection_Management'), |
|
|
|
|
value: TAB_LINK_POOL, |
|
|
|
|
ref: _ref => { |
|
|
|
|
this.ConnectPool = _ref; |
|
|
|
|
}, |
|
|
|
|