• This project
    • Loading...
  • Sign in

张泽世 / yohobuywap-node · Files

Go to a project

GitLab

  • Go to dashboard
  • 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
  • apps
  • channel
  • models
  • cate.js
  • cate
    c0af33bd
    by ccbikai
    2016-07-06 15:20:04 +0800  
    Browse Files
cate.js 292 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
/**
 * 分类页面 model
 * @author: Bi Kai<kai.bi@yoho.cn>
 * @date: 2016/07/06
 */
'use strict';

const api = global.yoho.API;

let getCateData = () => {
    return api.get('', {
        method: 'app.sort.get'
    }, {
        cache: true
    });
};

module.exports = {
    getCateData
};