MonthAccountOver.js 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Ext.define('erp.view.plm.cost.MonthAccountOver',{
  2. extend: 'Ext.Viewport',
  3. layout: {
  4. type: 'vbox',
  5. align: 'center',
  6. pack: 'center'
  7. },
  8. initComponent : function(){
  9. var me = this;
  10. Ext.apply(me, {
  11. items: [{
  12. width: 450,
  13. height: 300,
  14. bodyStyle: 'background: #f1f1f1;',
  15. xtype: 'form',
  16. title: '项目成本月结',
  17. layout: {
  18. type: 'vbox',
  19. align: 'center'
  20. },
  21. items: [{
  22. margin : '40 0 0 0',
  23. xtype: 'monthdatefield',
  24. fieldLabel: '期间',
  25. allowBlank: false,
  26. readOnly: true,
  27. labelWidth: 60,
  28. id: 'date',
  29. name: 'date'
  30. }],
  31. buttonAlign: 'center',
  32. buttons: [{
  33. xtype: 'erpStartAccountButton',
  34. height: 26
  35. },{
  36. xtype: 'erpOverAccountButton',
  37. height: 26
  38. },{
  39. xtype:'erpCloseButton',
  40. height: 26
  41. }]
  42. }]
  43. });
  44. me.callParent(arguments);
  45. }
  46. });