| 12345678910111213141516171819202122232425262728293031323334353637 |
- Ext.define('saas.view.test.query.QueryFormPanel', {
- extend: 'saas.view.core.query.QueryMoreFormPanel',
- xtype: 'test-query-formpanel-moreQuery',
- QueryUtil: Ext.create('saas.util.QueryUtil'),
- //字段属性
- _codeField: '',
- _statusField: '',
- _idField: '',
- _baseItems: '',
- 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
- }
- ]
- });
|