Ext.define('saas.view.document.bom.BasePanel', { extend: 'saas.view.core.base.BasePanel', xtype: 'document-bom-basepanel', controller: 'document-bom-basepanel', viewModel: 'document-bom-basepanel', searchField:[], //字段属性 _formXtype:'document-bom-formpanel', _title:'BOM资料', // _dataUrl:basePath+'ducument/customer/list', _batchOpenUrl:'http://192.168.253.31:9480/bom/batchOpen', _batchCloseUrl:'http://192.168.253.31:9480/bom/batchClose', _batchDeleteUrl:'http://192.168.253.31:9480/bom/batchDelete', gridConfig: { idField: 'id', codeField: 'bo_mothercode', dataUrl: 'http://192.168.253.31:9480/bom/list', columns : [{ text : "id", width : 0, dataIndex : "id", xtype : "numbercolumn", },{ text : "母件id", width : 0, dataIndex : "bo_motherid", xtype : "numbercolumn", },{ text : "母件编号", width : 200.0, dataIndex : "bo_mothercode", }, { text : "母件名称", dataIndex : "bo_mothername", width : 120.0, }, { text : "BOM状态", dataIndex : "bo_status", width : 120.0, }, { text : "BOM版本", dataIndex : "bo_version", width : 120.0, }] }, });