zhangwencui
2 天以前 65c6a24024ad223ba2bdffee2c4c3d47b2d3f456
src/api/basicData/newProduct.js
@@ -37,7 +37,7 @@
export function updateOrEditProductModel(query) {
    return request({
        url: '/productMaterialSku/update',
        method: 'post',
        method: 'put',
        data: query
    })
}
@@ -76,8 +76,8 @@
//  下载产品导入模板
export function downloadProductModelImportTemplate() {
    return request({
        url: '/basic/product/export',
        method: 'get',
        url: '/productMaterialSku/downloadTemplate',
        method: 'post',
        responseType: 'blob'
    })
}
@@ -123,4 +123,11 @@
        method: 'get',
        params: query
    })
}
// 拉取数据
export function loadData() {
    return request({
        url: '/productMaterial/loadData',
        method: 'get',
    })
}