StandardPrice.js 455 B

12345678910111213141516171819
  1. /**
  2. * 抓取标准单价(采购单)
  3. */
  4. Ext.define('erp.view.core.button.StandardPrice',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpStandardPriceButton',
  7. param: [],
  8. id: 'erpStandardPriceButton',
  9. text: $I18N.common.button.erpStandardPriceButton,
  10. iconCls: 'x-button-icon-save',
  11. cls: 'x-btn-gray',
  12. width: 130,
  13. style: {
  14. marginLeft: '10px'
  15. },
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });