| 123456789101112131415161718192021222324252627282930313233 |
- Ext.define('erp.view.scm.product.BOMDetailPanel.BOMDetailPanel',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- id:'BOMDetailPanelViewport',
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 20%',
- keyField:'bo_id',
- checkUrl: 'scm/product/BOMDetailLocCheckAndUpdate.action',
- },{
- xtype:'tabpanel',
- id :'BOMDetailPanelTab',
- anchor: '100% 80%',
- items:[{
- title:'导入数据',
- xtype: 'erpGridPanel2',
- bbar: {}
- },{
- title:'匹配差异',
- xtype: 'erpBOMDetailPanelGrid',
- }]
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|