QueryFormPanel.js 783 B

1234567891011121314151617181920212223242526272829303132
  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. items:[{
  6. xtype: 'textfield',
  7. name: 'pu_buyername',
  8. bind: '{pu_buyername}',
  9. fieldLabel: '采购员',
  10. allowBlank: true,
  11. columnWidth: 0.25
  12. },
  13. {
  14. xtype: 'textfield',
  15. name: 'pu_total',
  16. bind: '{pu_total}',
  17. fieldLabel: '金额',
  18. allowBlank: true,
  19. columnWidth: 0.25
  20. },
  21. {
  22. xtype: 'condatefield',
  23. name: 'pu_delivery',
  24. bind: '{pu_delivery}',
  25. fieldLabel: '交货日期',
  26. allowBlank: true,
  27. columnWidth: 0.25
  28. }
  29. ]
  30. });