1234567891011121314151617 |
- /**
- * 转风控客户按钮
- */
- Ext.define('erp.view.core.button.TurnFKCustomer',{
- extend: 'Ext.Button',
- alias: 'widget.erpTurnFKCustomerButton',
- iconCls: 'x-button-icon-submit',
- cls: 'x-btn-gray',
- text: $I18N.common.button.erpTurnFKCustomerButton,
- style: {
- marginLeft: '10px'
- },
- width: 120,
- initComponent : function(){
- this.callParent(arguments);
- }
- });
|