FormGridStore.js 480 B

12345678910111213141516171819202122
  1. /*
  2. * @Description: 列表store
  3. * @Author: hy
  4. * @Date: 2019-08-12 18:34:16
  5. * @LastEditTime: 2019-08-19 17:16:28
  6. */
  7. Ext.define('uas.store.FormGridStore', {
  8. extend: 'Ext.data.Store',
  9. alias: 'store.formGridStore',
  10. pageSize: 100,
  11. proxy: {
  12. type: 'ajax',
  13. url: '/api/formGridList',
  14. reader: {
  15. type: 'json',
  16. rootProperty: 'data',
  17. idProperty: 'id',
  18. }
  19. },
  20. autoLoad:true,
  21. remoteSort: false
  22. });