mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-24 16:05:08 +08:00
120 lines
2.2 KiB
JavaScript
120 lines
2.2 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 创建规格名称
|
|
export function createProperty(data) {
|
|
return request({
|
|
url: '/product/property/create',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 更新规格名称
|
|
export function updateProperty(data) {
|
|
return request({
|
|
url: '/product/property/update',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除规格名称
|
|
export function deleteProperty(id) {
|
|
return request({
|
|
url: '/product/property/delete?id=' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 获得规格名称
|
|
export function getProperty(id) {
|
|
return request({
|
|
url: '/product/property/get?id=' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 获得规格名称分页
|
|
export function getPropertyPage(query) {
|
|
return request({
|
|
url: '/product/property/page',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 获得规格名称列表
|
|
export function getPropertyList(query) {
|
|
return request({
|
|
url: '/product/property/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 获得规格名称列表
|
|
export function getPropertyListAndValue(query) {
|
|
return request({
|
|
url: '/product/property/listAndValue',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
// 导出规格名称 Excel
|
|
export function exportPropertyExcel(query) {
|
|
return request({
|
|
url: '/product/property/export-excel',
|
|
method: 'get',
|
|
params: query,
|
|
responseType: 'blob'
|
|
})
|
|
}
|
|
|
|
// ------------------------ 规格名称值 -------------------
|
|
|
|
// 获得规格名称值分页
|
|
export function getPropertyValuePage(query) {
|
|
return request({
|
|
url: '/product/property/value/page',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 获得规格名称值
|
|
export function getPropertyValue(id) {
|
|
return request({
|
|
url: '/product/property/value/get?id=' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
|
|
// 创建规格名称值
|
|
export function createPropertyValue(data) {
|
|
return request({
|
|
url: '/product/property/value/create',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 更新规格名称值
|
|
export function updatePropertyValue(data) {
|
|
return request({
|
|
url: '/product/property/value/update',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除规格名称
|
|
export function deletePropertyValue(id) {
|
|
return request({
|
|
url: '/product/property/value/delete?id=' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|