| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- Ext.define('erp.view.fa.RepQuery',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'form',
- anchor: '100% 14%',
- layout: 'hbox',
- bodyStyle: 'background: #f1f1f1;',
- fieldDefaults: {
- margin: '3 2 3 8',
- cls: 'form-field-allowBlank'
- },
- items: [{
- xtype: 'combo',
- fieldLabel: '报表编号',
- editable: false,
- name: 'fs_name',
- displayField: 'display',
- valueField: 'value',
- queryMode: 'local',
- margin: '3 0 3 8',
- store: new Ext.data.Store({
- fields: ['display', 'value', 'data']
- })
- }, {
- xtype: 'textfield',
- readonly: true,
- fieldStyle: 'background: #f1f1f1;',
- id: 'fs_code',
- name: 'fs_code',
- margin: '3 2 3 0'
- }, {
- xtype: 'monthdatefield',
- fieldLabel: '期间',
- id: 'frd_yearmonth',
- name: 'frd_yearmonth'
- }],
- tbar: [{
- xtype: 'erpQueryButton'
- }, '->', {
- xtype: 'erpPrintButton'
- }, {
- name: 'export',
- text: $I18N.common.button.erpExportButton,
- iconCls: 'x-button-icon-excel',
- cls: 'x-btn-gray',
- margin: '0 0 0 5'
- },{
- xtype: 'erpCloseButton',
- margin: '0 0 0 5'
- }]
- }, {
- xtype: 'gridpanel',
- anchor: '100% 86%',
- columnLines: true,
- columns: [{
- text: '列1',
- cls: 'x-grid-header-1',
- flex: 1
- },{
- text: '列2',
- cls: 'x-grid-header-1',
- flex: 1
- },{
- text: '列3',
- cls: 'x-grid-header-1',
- flex: 1
- },{
- text: '列4',
- cls: 'x-grid-header-1',
- flex: 1
- },{
- text: '列5',
- cls: 'x-grid-header-1',
- flex: 1
- }],
- store: new Ext.data.Store({
- fields: [],
- data: [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}]
- })
- }]
- });
- me.callParent(arguments);
- }
- });
|