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.
28 lines
663 B
28 lines
663 B
6 years ago
|
import {WidgetType, CenterAdapt, Vertical, Layout, Label} from '@ui/index';
|
||
6 years ago
|
const className = 'dec.dcm.component.right.nothing';
|
||
6 years ago
|
const Widget: WidgetType = {
|
||
|
render() {
|
||
|
return {
|
||
|
type: CenterAdapt,
|
||
6 years ago
|
top: 200,
|
||
6 years ago
|
items: [{
|
||
|
type: Vertical,
|
||
6 years ago
|
items: [
|
||
6 years ago
|
{
|
||
|
type: Layout,
|
||
|
cls: 'data-connection-background',
|
||
|
width: 260,
|
||
|
height: 130,
|
||
|
},
|
||
|
{
|
||
6 years ago
|
type: Label,
|
||
6 years ago
|
text: BI.i18nText('Dec-Dcm_Connection_Plase_Add_One'),
|
||
6 years ago
|
},
|
||
|
],
|
||
|
}],
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
BI.shortcut(className, BI.inherit(BI.Widget, Widget));
|
||
|
export default className;
|