BatchGoodsOff.js 426 B

123456789101112131415161718
  1. /**
  2. * 商品批量下架
  3. */
  4. Ext.define('erp.view.core.button.BatchGoodsOff',{
  5. id:'batchgoodsoff',
  6. extend: 'Ext.Button',
  7. alias: 'widget.erpBatchGoodsOffButton',
  8. iconCls: 'x-button-icon-check',
  9. cls: 'x-btn-gray',
  10. text: $I18N.common.button.erpBatchGoodsOffButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 100,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. },
  18. });