/** * Created by zhouy on 2018/10/18. */ Ext.define('saas.view.document.other.ProductUnit', { extend: 'saas.view.document.kind.Kind', xtype: 'other-productunit', autoScroll: true, layout:'fit', defaultType:'productunit', tbar: ['->',{ xtype:'button', text:'新增', listeners: { click: 'onAdd' } },{ xtype:'button', text:'刷新', listeners: { click: 'onRefresh' } }], listeners:{ afterrender:function(p){ p.getViewModel().setData({title:'物料单位'}); } } })