AutoSync.js 679 B

12345678910111213141516171819202122232425262728293031
  1. Ext.define('erp.view.ma.group.AutoSync',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype: 'grid',
  10. title: '勾选自动同步的账套',
  11. bodyStyle: 'background: #f1f1f1;',
  12. anchor: '100% 100%',
  13. columns: [{
  14. text: '待抛转资料'
  15. }],
  16. columnLines: true,
  17. buttonAlign: 'center',
  18. buttons: [{
  19. text: $I18N.common.button.erpConfirmButton,
  20. cls: 'x-btn-blue',
  21. id: 'confirm'
  22. }, {
  23. text: $I18N.common.button.erpCloseButton,
  24. cls: 'x-btn-blue',
  25. id: 'close'
  26. }]
  27. }]
  28. });
  29. me.callParent(arguments);
  30. }
  31. });