productPrice.js 2.36 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
export function getPriceSnapshotList(priceId){
  return request({
    url: '/ecw/product-price/priceSnapshotList',
    method: 'get',
    params: {priceId}
  })
我在何方's avatar
我在何方 committed
99 100 101 102 103 104 105 106 107 108
}


// 获得路线产品
export function getProductPriceGetPrice(query) {
  return request({
    url: '/ecw/product-price/getPrice',
    method: 'get',
    params: query
  })
109 110 111 112 113 114 115 116 117 118
}

// 更新单询
export function updateOrderInquiry(data) {
  return request({
    url: '/ecw/product-price/updateOrderInquiry',
    method: 'put',
    data: data
  })
}
119 120 121 122 123 124 125 126 127

// 批量加价
export function batchAddPrice(data) {
  return request({
    url: '/ecw/product-price/batchAddPrice',
    method: 'put',
    data
  })
}