Authored by 李奇

商品列表导出修改

... ... @@ -79,7 +79,7 @@
service.exportProductFile(params)
.then(res => {
// todo 接口开发中
});
},
... ...
... ... @@ -14,7 +14,7 @@ const apiUrl = {
updateSellerPrice: '/platform/updateSellerPrice',
queryProdSizeList: '/platform/queryProdSizeList',
saveProdSizeInfo: '/platform/saveProdSizeInfo',
todooutput: '/platform/todooutput',
exportSellerProductList: '/platform/exportSellerProductList',
getSellerAllSortInfo: '/platform/getSellerAllSortInfo'
};
... ... @@ -72,7 +72,7 @@ const productService = {
},
exportProductFile(params) {
return axios.post(apiUrl.todooutput, params).then(result => {
return axios.post(apiUrl.exportSellerProductList, params).then(result => {
if (result.status === 200) {
return result.data;
}
... ...
... ... @@ -23,6 +23,7 @@ let domainApis = {
queryProdSizeList: '/SellerProductSize/queryProdSizeList',
saveProdSizeInfo: '/SellerProductSize/saveProdSizeInfo',
getSellerAllSortInfo: '/SellerProductController/getSellerAllSortInfo',
exportSellerProductList: '/SellerProductController/exportSellerProductList',
updateSellerPrice: '/SellerPriceController/updateSellerPrice'
}
};
... ...