MaterialLackTwo.js 414 B

123456789101112131415161718
  1. /**
  2. * 缺料二维查看
  3. */
  4. Ext.define('erp.view.core.button.MaterialLackTwo',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpMaterialLackTwoButton',
  7. iconCls: 'x-button-icon-scan',
  8. cls: 'x-btn-gray',
  9. text: '缺料二维查看',
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. width: 120,
  14. id:'MaterialLackTwo',
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });