product.js 161 B

12345
  1. import axios from 'axios'
  2. export const getProductDetail = ({ id }, cb) => {
  3. axios.get(`v1/project/${id}/view`).then(cb).catch((err) => { console.log(err) })
  4. }