BaseData.js 871 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Ext.define('erp.view.ma.group.BaseData',{
  2. extend: 'Ext.Viewport',
  3. layout: {
  4. type: 'vbox',
  5. align: 'center'
  6. },
  7. hideBorders: true,
  8. initComponent : function(){
  9. var me = this;
  10. Ext.apply(me, {
  11. items: [{
  12. xtype: 'form',
  13. title: '勾选可以在当前账套新增和修改的资料',
  14. bodyStyle: 'background: #f1f1f1;',
  15. width: 500,
  16. height: 500,
  17. layout: 'column',
  18. defaults: {
  19. xtype: 'checkbox',
  20. margin: '2 10 2 10',
  21. columnWidth: .33
  22. },
  23. items: [{
  24. boxLabel: '全选',
  25. id: 'selectall',
  26. columnWidth: 1
  27. }],
  28. buttonAlign: 'center',
  29. buttons: [{
  30. text: $I18N.common.button.erpConfirmButton,
  31. cls: 'x-btn-blue',
  32. id: 'confirm'
  33. }, {
  34. text: $I18N.common.button.erpCloseButton,
  35. cls: 'x-btn-blue',
  36. id: 'close'
  37. }]
  38. }]
  39. });
  40. me.callParent(arguments);
  41. }
  42. });