| 1234567891011121314151617181920212223242526272829303132 |
- Ext.define('saas.view.test.query.QueryFormPanel', {
- extend: 'saas.view.core.query.QueryMoreFormPanel',
- xtype: 'test-query-formpanel-moreQuery',
- QueryUtil: Ext.create('saas.util.QueryUtil'),
- items:[{
- xtype: 'textfield',
- name: 'pu_buyername',
- bind: '{pu_buyername}',
- fieldLabel: '采购员',
- allowBlank: true,
- columnWidth: 0.25
- },
- {
- xtype: 'textfield',
- name: 'pu_total',
- bind: '{pu_total}',
- fieldLabel: '金额',
- allowBlank: true,
- columnWidth: 0.25
- },
- {
- xtype: 'condatefield',
- name: 'pu_delivery',
- bind: '{pu_delivery}',
- fieldLabel: '交货日期',
- allowBlank: true,
- columnWidth: 0.25
- }
- ]
- });
|