history.ts 240 B

12345678910
  1. import request from '@/config/axios'
  2. /**
  3. * 获得商品浏览记录分页
  4. *
  5. * @param params 请求参数
  6. */
  7. export const getBrowseHistoryPage = (params: any) => {
  8. return request.get({ url: '/product/browse-history/page', params })
  9. }