| 12345678910111213141516171819202122 |
- /*
- * @Description: 列表store
- * @Author: hy
- * @Date: 2019-08-12 18:34:16
- * @LastEditTime: 2019-08-13 08:40:20
- */
- Ext.define('uas.store.DataListGridStore', {
- extend: 'Ext.data.Store',
- alias: 'store.dataListGridStore',
- model: 'uas.model.DataListGridModel',
- proxy: {
- type: 'ajax',
- url: 'resources/json/DataListData.json',
- reader: {
- type: 'json',
- rootProperty: 'data',
- idProperty: 'id',
- totalProperty: 'total'
- }
- },
- remoteSort: false
- });
|