QueryFormPanel.js 877 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Ext.define('saas.view.test.query.QueryFormPanel', {
  2. extend: 'saas.view.core.query.QueryMoreFormPanel',
  3. xtype: 'test-query-formpanel-moreQuery',
  4. QueryUtil: Ext.create('saas.util.QueryUtil'),
  5. //字段属性
  6. _codeField: '',
  7. _statusField: '',
  8. _idField: '',
  9. _baseItems: '',
  10. items:[{
  11. xtype: 'textfield',
  12. name: 'pu_buyername',
  13. bind: '{pu_buyername}',
  14. fieldLabel: '采购员',
  15. allowBlank: true,
  16. columnWidth: 0.25
  17. },
  18. {
  19. xtype: 'textfield',
  20. name: 'pu_total',
  21. bind: '{pu_total}',
  22. fieldLabel: '金额',
  23. allowBlank: true,
  24. columnWidth: 0.25
  25. },
  26. {
  27. xtype: 'condatefield',
  28. name: 'pu_delivery',
  29. bind: '{pu_delivery}',
  30. fieldLabel: '交货日期',
  31. allowBlank: true,
  32. columnWidth: 0.25
  33. }
  34. ]
  35. });