CheckForm.js 904 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. Ext.define('erp.view.scm.reserve.CheckForm',{
  2. extend: 'Ext.form.Panel',
  3. alias: 'widget.Check',
  4. id: 'form',
  5. title: '<font color=#a1a1a1; size=3>盘点标签生成作业</font>',
  6. frame : true,
  7. autoScroll : true,
  8. buttonAlign : 'center',
  9. FormUtil: Ext.create('erp.util.FormUtil'),
  10. fieldDefaults : {
  11. margin : '4 2 4 2',
  12. fieldStyle : "background:#FFFAFA;color:#515151;",
  13. labelAlign : "right",
  14. msgTarget: 'side',
  15. blankText : $I18N.common.form.blankText
  16. },
  17. initComponent : function(){
  18. this.callParent(arguments);
  19. },
  20. items: [{
  21. xtype: 'textfield',
  22. fieldLabel:'盘点标签别',
  23. allowBlank: true,
  24. id: 'check',
  25. name: 'check'
  26. },{
  27. xtype: 'textfield',
  28. fieldLabel:'备注说明',
  29. allowBlank: true,
  30. id: 'text',
  31. name: 'text'
  32. }],
  33. buttons: [{
  34. xtype: 'erpConfirmButton'
  35. },{
  36. xtype:'erpCloseButton'
  37. }]
  38. });