Buttons6.js 385 B

123456789101112131415161718192021
  1. /**
  2. * 按钮
  3. */
  4. Ext.define('erp.view.scm.sale.buttons.Buttons6',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpPreSaleButton6',
  7. iconCls: 'x-button-icon-check',
  8. cls: 'x-btn-gray',
  9. id:'button_6',
  10. text: '工程部评审',
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 120,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });