| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- Ext.define('erp.view.fa.ars.BatchCancelEstimate',{
- extend: 'Ext.Viewport',
- layout : {
- type : 'vbox',
- align : 'center',
- pack : 'center'
- },
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items : [ {
- width : 450,
- height : 300,
- bodyStyle : 'background: #f1f1f1;',
- xtype : 'form',
- title : '批量取消应付暂估',
- layout : {
- type : 'vbox',
- align : 'center'
- },
- items : [ {
- margin : '40 0 0 0',
- xtype : 'monthdatefield',
- fieldLabel : '期间',
- allowBlank : false,
- readOnly : true,
- labelWidth : 60,
- id : 'date',
- name : 'date'
- } ],
- buttonAlign : 'center',
- buttons : [ {
- xtype : 'erpConfirmButton',
- height : 26
- }, {
- xtype : 'erpCloseButton',
- height : 26
- } ]
- } ]
- });
- me.callParent(arguments);
- }
- });
|