Commit 76968cf8 authored by jzc's avatar jzc

Merge branch 'feature/jzc/brand/0.0.2' into dev

parents 97e23d4a e1a1fcb9
import request from '@/utils/request'
// 查询品牌报价列表
export function listBrandQuotation(query) {
return request({
url: '/dv/brandQuotation/list',
method: 'get',
params: query
})
}
// 查询品牌报价详细
export function getBrandQuotation(brandOrderQuantityId) {
return request({
url: '/dv/brandQuotation/' + brandOrderQuantityId,
method: 'get'
})
}
// 新增品牌报价
export function addBrandQuotation(data) {
return request({
url: '/dv/brandQuotation',
method: 'post',
data: data
})
}
// 修改品牌报价
export function updateBrandQuotation(data) {
return request({
url: '/dv/brandQuotation',
method: 'put',
data: data
})
}
// 删除品牌报价
export function delBrandQuotation(brandOrderQuantityId) {
return request({
url: '/dv/brandQuotation/' + brandOrderQuantityId,
method: 'delete'
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment