java-mall-admin/src/api/goodsTool.js
lihaoyuan 03335b2319 udate:新增店铺数据库配置字段,列表属性展示
fix:修复删除,新增商品规格提交后不刷新数据的bug
2025-07-29 18:14:14 +08:00

145 lines
3.1 KiB
JavaScript

import request from '@/utils/request'
import { stringify } from 'qs'
export async function getProductMapperList(data) {
data = stringify(data)
return request({
url: `/admin/shop/shop-sync-productMapper/list?${data}`,
method: 'get',
})
}
export async function getShopList() {
return request({
url: '/admin/shop/shop-store-base/list?pageNum=1&pageSize=99999&store_type=1',
method: 'get',
})
}
export async function updateGoods(data) {
return request({
url: '/admin/shop/shop-sync-productMapper/udpateProductMapping',
method: 'put',
headers: {
'Content-Type': 'application/json',
},
data,
})
}
export async function deleteGoods(data) {
return request({
url: '/admin/shop/shop-sync-productMapper/delProductMapping',
method: 'delete',
headers: {
'Content-Type': 'application/json',
},
data,
})
}
export async function downloadTempGoods() {
return request({
url: '/admin/shop/shop-sync-productMapper/template',
method: 'get',
responseType: 'blob',
})
}
export async function batchCreateGoods(data) {
return request({
url: '/admin/shop/shop-sync-productMapper/saveProductMappingBatch',
method: 'post',
headers: {
'Content-Type': 'application/json',
},
data,
})
}
export async function batchExportGoods(data) {
const formData = new URLSearchParams();
data.forEach(id => formData.append('ids', id));
return request({
url: '/admin/shop/shop-sync-productMapper/exportSelected',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
data: formData.toString(),
responseType: 'blob'
});
}
export async function getProductMapping(data) {
return request({
url: '/admin/shop/shop-sync-productMapper/getProductMapping',
method: 'get',
data,
})
}
export async function getSyncBaseMapingProducts() {
return request({
url: '/admin/shop/shop-sync-productMapper/getSyncBaseMapingProducts',
method: 'get',
})
}
export async function downloadErrorReport(data) {
data = stringify(data)
return request({
url: `/admin/shop/shop-sync-productMapper/download?${data}`,
method: 'get',
})
}
export async function syncProductMaping(storeId,isPublish) {
return request({
url: `/admin/shop/shop-sync-productMapper/syncProductMaping`,
method: 'put',
headers: {
'Content-Type': 'application/json',
},
params:{
storeId,
isPublish,
}
})
}
export async function importGoodsData(data) {
return request({
url: '/admin/shop/shop-sync-productMapper/importData',
method: 'post',
headers: {
'Content-Type': 'multipart/form-data',
},
data,
})
}
export async function syncShopImages(data) {
data = stringify(data)
return request({
url: `/admin/shop/shop-sync-productMapper/syncShopImages?${data}`,
method: 'post',
})
}
export default {
getProductMapperList,
getShopList,
updateGoods,
deleteGoods /* */,
downloadTempGoods,
batchCreateGoods,
batchExportGoods,
getProductMapping,
getSyncBaseMapingProducts,
downloadErrorReport,
syncProductMaping,
importGoodsData,
syncShopImages,
}