| 12345678910111213141516171819202122232425 |
- Ext.define('saas.view.cuservice.Models', {
- extend: 'Ext.app.ViewModel',
- alias: 'viewmodel.cuservice',
- stores: {
- feedback: {
- model: 'saas.model.cuservice.Feedback',
- autoLoad: true,
- proxy: {
- type: 'ajax',
- // url: 'http://10.1.80.33:9040/customerFeedBack/list',
- url: '/api/operation/customerFeedBack/list',
- timeout: 8000,
- actionMethods: {
- read: 'GET'
- },
- reader: {
- type: 'json',
- rootProperty: 'data.list',
- totalProperty: 'data.total',
- }
- }
- }
- }
- });
|