| 1234567891011121314151617 |
- /**
- * 导出人员二维码
- */
- Ext.define('erp.view.core.button.ExportScanLogin',{
- extend: 'Ext.Button',
- alias: 'widget.erpExportScanLoginButton',
- iconCls: 'x-button-icon-excel',
- cls: 'x-btn-gray',
- text: $I18N.common.button.erpExportScanLoginButton,
- style: {
- marginLeft: '10px'
- },
- width: 160,
- initComponent : function(){
- this.callParent(arguments);
- }
- });
|