Ext.define('YieldApp.view.YieldBottomView' ,{
extend: 'Ext.panel.Panel',
alias : 'widget.yieldbottomView',
autoHeight : true,
region: "center",
border: false,
frame: true,
autoWidth: true,
title: '产量统计分析列表',
items: [{
xtype: 'tabpanel',
region: 'center',
id : 'yieldBottomPanel',
defaults: {
autoScroll: true, //是否有滚动条
bodyPadding: 5
},
items: [
{
xtype: 'panel',
id : 'pmonth',
title: '按月份统计',
items: [{xtype : 'yieldmonthListView'}]
},
{
xtype: 'panel',
title: '按季度统计',
items: [{xtype : 'yieldcountListView'}]
},
{
xtype: 'panel',
title: '日产值统计',
items: [{xtype : 'yielddayListView'}]
}
]
}]
});
产量统计分析视图
本文介绍了一种使用ExtJS框架创建产量统计分析视图的方法,该视图支持按月、季度和日进行产量数据的展示,并具备自动滚动和内边距设置等功能。
2638

被折叠的 条评论
为什么被折叠?



