Ext.define('erp.view.scm.reserve.CheckForm',{ extend: 'Ext.form.Panel', alias: 'widget.Check', id: 'form', title: '盘点标签生成作业', frame : true, autoScroll : true, buttonAlign : 'center', FormUtil: Ext.create('erp.util.FormUtil'), fieldDefaults : { margin : '4 2 4 2', fieldStyle : "background:#FFFAFA;color:#515151;", labelAlign : "right", msgTarget: 'side', blankText : $I18N.common.form.blankText }, initComponent : function(){ this.callParent(arguments); }, items: [{ xtype: 'textfield', fieldLabel:'盘点标签别', allowBlank: true, id: 'check', name: 'check' },{ xtype: 'textfield', fieldLabel:'备注说明', allowBlank: true, id: 'text', name: 'text' }], buttons: [{ xtype: 'erpConfirmButton' },{ xtype:'erpCloseButton' }] });