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 };