12345678910111213141516171819202122 |
- /**
- *采购询价单:查看历史报价
- */
- Ext.define('erp.view.core.button.HistoryQuotation',{
- extend: 'Ext.Button',
- alias: 'widget.erpHistoryQuoButton',
- iconCls: 'x-button-icon-yuan',
- cls: 'x-btn-gray',
- id: 'historyquo',
- text: $I18N.common.button.erpHistoryQuoButton,
- style: {
- marginLeft: '10px'
- },
- width: 130,
- initComponent : function(){
- this.callParent(arguments);
- this.addEvents({
- base: true,
- formal: true
- });
- }
- });
|