PrintProxy.js 410 B

123456789101112131415161718
  1. /**
  2. * 打印委托书
  3. */
  4. Ext.define('erp.view.core.button.PrintProxy',{
  5. id:'printProxy',
  6. extend: 'Ext.Button',
  7. alias: 'widget.erpPrintProxyButton',
  8. iconCls: 'x-button-icon-print',
  9. cls: 'x-btn-gray',
  10. text: $I18N.common.button.erpPrintProxyButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 120,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });