| 12345678910111213141516171819 |
- /**
- * 学科
- */
- Ext.define('school.store.Subject', {
- extend: 'Ext.data.Store',
- alias: 'store.store_subject',
- storeId: 'store_subject',
- model: 'school.model.Subject',
- autoLoad: false,
- proxy: {
- type: 'ajax',
- url: '/api/school/mirror/findSubject',
- reader: {
- type: 'json',
- rootProperty: 'data'
- }
- }
- });
|