12345678910111213141516171819202122 |
- const request = uni.$u.http
- // 获取产品列表
- export function getProducts(data){
- return request.post(
- `v1/product/productList`,
- data
- )
- }
- // 获取产品详情
- export function getProductDetail(data){
- return request.post(
- `v1/product/productDetail`,
- data
- )
- }
- export default {
- getProducts,
- getProductDetail
- }
|