TurnProdinoutIn.js 380 B

1234567891011121314151617
  1. /**
  2. * 生成Project
  3. */
  4. Ext.define('erp.view.core.button.TurnProdinoutIn',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpTurnProdinoutIn',
  7. text: $I18N.common.button.TurnProdinoutIn,
  8. iconCls: 'x-button-icon-add',
  9. cls: 'x-btn-gray',
  10. width: 120,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. initComponent : function(){
  15. this.callParent(arguments);
  16. }
  17. });