cart-api.js 227 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /** * Created by TaoHuang on 2016/9/28. */ const api = global.yoho.API; const goodsCount = (uid) => { api.get('', { method: 'app.Shopping.count', uid: uid }); }; module.exports = { goodsCount };