| 1234567891011121314151617 |
- /* 修改按钮---宇辰售后记录用
- */
- Ext.define('erp.view.core.button.UpdateYC',{
- extend: 'Ext.Button',
- alias: 'widget.erpUpdateYCButton',
- iconCls: 'x-button-icon-submit',
- cls: 'x-btn-gray',
- text: $I18N.common.button.erpUpdateYCButton,
- id:'updateycbutton',
- style: {
- marginLeft: '10px'
- },
- width: 110,
- initComponent : function(){
- this.callParent(arguments);
- }
- });
|