productPrice.js 1.87 KB
Newer Older
wanglianghe's avatar
wanglianghe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
import request from '@/utils/request'

// 创建产品价格
export function createProductPrice(data) {
  return request({
    url: '/ecw/product-price/create',
    method: 'post',
    data: data
  })
}

// 更新产品价格
export function updateProductPrice(data) {
  return request({
    url: '/ecw/product-price/update',
    method: 'put',
    data: data
  })
}

// 删除产品价格
export function deleteProductPrice(id) {
  return request({
    url: '/ecw/product-price/delete?id=' + id,
    method: 'delete'
  })
}

// 获得产品价格
export function getProductPrice(id) {
  return request({
    url: '/ecw/product-price/get?id=' + id,
    method: 'get'
  })
}

// 获得产品价格分页
export function getProductPricePage(query) {
  return request({
    url: '/ecw/product-price/page',
    method: 'get',
    params: query
  })
}

// 导出产品价格 Excel
export function exportProductPriceExcel(query) {
  return request({
    url: '/ecw/product-price/export-excel',
    method: 'get',
wanglianghe's avatar
wanglianghe committed
51
    timeout: 3*60*1000,
wanglianghe's avatar
wanglianghe committed
52 53 54 55
    params: query,
    responseType: 'blob'
  })
}
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

// 批量获得产品价格
export function getProductPriceList(query) {
  return request({
    url: '/ecw/product-price/list',
    method: 'get',
    params: query
  })
}

// 批量修改产品价格
export function batchUpdateProductPrice(query) {
  return request({
    url: '/ecw/product-price/batchUpdate',
    method: 'put',
    data: query
  })
}
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92

// 批量拉黑
export function batchBlock(query) {
  return request({
    url: '/ecw/product-price/batchBlock',
    method: 'get',
    params: query
  })
}

// 批量下架
export function batchOff(query) {
  return request({
    url: '/ecw/product-price/batchOff',
    method: 'get',
    params: query
  })
}

93 94 95 96 97 98 99
export function getPriceSnapshotList(priceId){
  return request({
    url: '/ecw/product-price/priceSnapshotList',
    method: 'get',
    params: {priceId}
  })
}