| 12345678910111213141516171819202122232425262728 |
- Ext.define('erp.view.oa.meeting.New',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 100%',
- saveUrl: 'oa/meeting/saveMeetingRoom.action',
- deleteUrl: 'oa/meeting/deleteMeetingRoom.action',
- updateUrl: 'oa/meeting/updateMeetingRoom.action',
- auditUrl: 'oa/meeting/auditMeetingRoom.action',
- resAuditUrl: 'oa/meeting/resAuditMeetingRoom.action',
- submitUrl: 'oa/meeting/submitMeetingRoom.action',
- resSubmitUrl: 'oa/meeting/resSubmitMeetingRoom.action',
- getIdUrl: 'common/getId.action?seq=MEETINGROOM_SEQ',
- keyField: 'mr_id',
- statusField: 'mr_status'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|