Blame view

public/js/guang/index/model.js 425 Bytes
郭成尧 authored
1 2 3 4
/*
 * @Author: Targaryen
 * @Date: 2017-04-26 17:31:12
 * @Last Modified by: Targaryen
郭成尧 authored
5
 * @Last Modified time: 2017-05-02 10:10:07
郭成尧 authored
6 7 8 9 10 11 12 13 14 15 16
 */
'use strict';

import {
    http
} from 'yoho-mvc';

class Guang {
    /**
     * 加载更多
     */
郭成尧 authored
17
    fetchList(params) {
郭成尧 authored
18 19 20 21 22 23 24 25 26 27 28
        return http({
            type: 'GET',
            url: '/guang/index/page',
            data: params
        });
    }
}

module.exports = {
    Guang
};