12345678910111213141516171819202122232425262728293031323334353637383940 |
- Ext.define('erp.view.scm.reserve.GetInCode',{
- 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: 'textfield',
- fieldLabel: '入仓单号',
- readOnly: true,
- labelWidth: 80,
- id: 'code',
- name: 'code'
- }],
- buttonAlign: 'center',
- buttons: [{
- xtype: 'erpConfirmButton',
- },{
- xtype:'erpCloseButton',
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|