123456789101112131415161718192021222324252627 |
- Ext.define('make.view.sys.parameter.TabpanelBox', {
- extend: 'Ext.panel.Panel',
- xtype: 'make-parameter-tabpanelbox',
- cls: 'sys-parameter-tabpanelbox',
- requires: [
- 'Ext.layout.container.Card'
- ],
- layout: 'card',
- height: '100%',
- initComponent: function () {
- var me = this;
- Ext.apply(me, {
- items: [{
- itemId: 'supplychain-1',
- xtype: 'make-supplychain-panel',
- height: me.height
- }, {
- itemId: 'finance-2',
- xtype: 'make-finance-panel',
- height: me.height
- }],
- })
- me.callParent(arguments);
- }
- });
|