1234567891011121314151617 |
- /**
- * 出货按钮
- */
- Ext.define('erp.view.core.button.Shipment', {
- extend : 'Ext.Button',
- alias : 'widget.erpShipmentButton',
- iconCls : 'x-button-icon-add',
- cls : 'x-btn-gray',
- text : $I18N.common.button.erpShipmentButton,
- style : {
- marginLeft : '10px'
- },
- width : 60,
- initComponent : function() {
- this.callParent(arguments);
- }
- });
|