FormPanel.js 533 B

1234567891011121314151617181920212223
  1. Ext.define('saas.view.test.order.FormPanel', {
  2. extend: 'saas.view.core.form.FormPanel',
  3. xtype: 'test-order-formpanel',
  4. controller: 'test-order-formcontroller',
  5. viewModel: 'test-order-formmodel',
  6. <<<<<<< HEAD
  7. _codeField: 'puCode',
  8. _statusField: 'puStatuscode',
  9. _idField: 'puId',
  10. initId : 11
  11. =======
  12. toolBtns: [{
  13. xtype: 'button',
  14. text: '测试',
  15. handler: function() {
  16. console.log('11');
  17. }
  18. }]
  19. >>>>>>> 201b642dc3fc73db186b7f07f0350aacfd94aee4
  20. });