product-service.js 223 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * Created by TaoHuang on 2017/4/26. */ import api from '../api'; function getProduct(skn) { return api.getProductAllInfo(skn).then((result) => { return result.data; }); } export default getProduct;