You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
663 B
27 lines
663 B
import {WidgetType, CenterAdapt, Vertical, Layout, Label} from '@ui/index'; |
|
const className = 'dec.dcm.component.right.nothing'; |
|
const Widget: WidgetType = { |
|
render() { |
|
return { |
|
type: CenterAdapt, |
|
top: 200, |
|
items: [{ |
|
type: Vertical, |
|
items: [ |
|
{ |
|
type: Layout, |
|
cls: 'data-connection-background', |
|
width: 260, |
|
height: 130, |
|
}, |
|
{ |
|
type: Label, |
|
text: BI.i18nText('Dec-Dcm_Connection_Plase_Add_One'), |
|
}, |
|
], |
|
}], |
|
}; |
|
}, |
|
}; |
|
BI.shortcut(className, BI.inherit(BI.Widget, Widget)); |
|
export default className;
|
|
|