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.
|
|
|
import {WidgetType, Vertical, Left, Label, Button} from '@ui/index';
|
|
|
|
import Title from '../right_title/right.title.component';
|
|
|
|
import RightShow from '../right_show/right.show.component';
|
|
|
|
const className = 'fr.component.right.detail';
|
|
|
|
const Widget: WidgetType = {
|
|
|
|
render() {
|
|
|
|
return {
|
|
|
|
type: Vertical,
|
|
|
|
cls:'right-content',
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: Title,
|
|
|
|
}, {
|
|
|
|
type: RightShow,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
BI.shortcut(className, BI.inherit(BI.Widget, Widget));
|
|
|
|
export default className;
|