@@ -22,6 +22,14 @@ export const productList = (params) => {
method: 'post'
})
}
+// 产品详情
+export const productDetail = (params) => {
+ const url = `/product/findBySn/${params.sn}`
+ return axios({
+ url: url,
+ method: 'get'
+ })
+}
// 产品 价格变更记录 列表 分页
export const productPriceChangeList = (params) => {
const url = `/product/priceChange/queryPage/${params.pageNo}/${params.pageSize}`