5.23修改

This commit is contained in:
zoujiandong
2024-05-23 13:30:54 +08:00
parent dd7872d625
commit cf21b62b18
6 changed files with 214 additions and 11 deletions
+10 -3
View File
@@ -16,8 +16,8 @@ export function getMedinceDetail(id){//商品详情-平台
};
export function getSysMedinceList(params){//获取商品列表-分页-系统
return request({
url:'/admin/product',
method: 'get',
url:'/admin/product/page',
method: 'post',
params
})
};
@@ -55,4 +55,11 @@ export function getMedinceDetail(id){//商品详情-平台
method: 'get'
})
}
export function exportProduct(data){//导出
return request({
url:`/admin/export/product`,
method: 'post',
data
})
}