• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • public
  • js
  • guang
  • index
  • model.js
  • tab-change-loadmore-ok
    63a2c294
    by 郭成尧
    2017-05-02 13:52:26 +0800  
    Browse Files
model.js 425 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * @Author: Targaryen
 * @Date: 2017-04-26 17:31:12
 * @Last Modified by: Targaryen
 * @Last Modified time: 2017-05-02 10:10:07
 */
'use strict';

import {
    http
} from 'yoho-mvc';

class Guang {
    /**
     * 加载更多
     */
    fetchList(params) {
        return http({
            type: 'GET',
            url: '/guang/index/page',
            data: params
        });
    }
}

module.exports = {
    Guang
};