90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
import request from '@/config/axios'
 | 
						|
 | 
						|
/**
 | 
						|
 * 商品属性
 | 
						|
 */
 | 
						|
export interface PropertyVO {
 | 
						|
  id?: number
 | 
						|
  /** 名称 */
 | 
						|
  name: string
 | 
						|
  /** 备注 */
 | 
						|
  remark?: string
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * 属性值
 | 
						|
 */
 | 
						|
export interface PropertyValueVO {
 | 
						|
  id?: number
 | 
						|
  /** 属性项的编号 */
 | 
						|
  propertyId?: number
 | 
						|
  /** 名称 */
 | 
						|
  name: string
 | 
						|
  /** 备注 */
 | 
						|
  remark?: string
 | 
						|
}
 | 
						|
 | 
						|
// ------------------------ 属性项 -------------------
 | 
						|
 | 
						|
// 创建属性项
 | 
						|
export const createProperty = (data: PropertyVO) => {
 | 
						|
  return request.post({ url: '/product/property/create', data })
 | 
						|
}
 | 
						|
 | 
						|
// 更新属性项
 | 
						|
export const updateProperty = (data: PropertyVO) => {
 | 
						|
  return request.put({ url: '/product/property/update', data })
 | 
						|
}
 | 
						|
 | 
						|
// 删除属性项
 | 
						|
export const deleteProperty = (id: number) => {
 | 
						|
  return request.delete({ url: `/product/property/delete?id=${id}` })
 | 
						|
}
 | 
						|
 | 
						|
// 获得属性项
 | 
						|
export const getProperty = (id: number): Promise<PropertyVO> => {
 | 
						|
  return request.get({ url: `/product/property/get?id=${id}` })
 | 
						|
}
 | 
						|
 | 
						|
// 获得属性项分页
 | 
						|
export const getPropertyPage = (params: PageParam) => {
 | 
						|
  return request.get({ url: '/product/property/page', params })
 | 
						|
}
 | 
						|
 | 
						|
// 获得属性项精简列表
 | 
						|
export const getPropertySimpleList = (): Promise<PropertyVO[]> => {
 | 
						|
  return request.get({ url: '/product/property/simple-list' })
 | 
						|
}
 | 
						|
 | 
						|
// ------------------------ 属性值 -------------------
 | 
						|
 | 
						|
// 获得属性值分页
 | 
						|
export const getPropertyValuePage = (params: PageParam & any) => {
 | 
						|
  return request.get({ url: '/product/property/value/page', params })
 | 
						|
}
 | 
						|
 | 
						|
// 获得属性值
 | 
						|
export const getPropertyValue = (id: number): Promise<PropertyValueVO> => {
 | 
						|
  return request.get({ url: `/product/property/value/get?id=${id}` })
 | 
						|
}
 | 
						|
 | 
						|
// 创建属性值
 | 
						|
export const createPropertyValue = (data: PropertyValueVO) => {
 | 
						|
  return request.post({ url: '/product/property/value/create', data })
 | 
						|
}
 | 
						|
 | 
						|
// 更新属性值
 | 
						|
export const updatePropertyValue = (data: PropertyValueVO) => {
 | 
						|
  return request.put({ url: '/product/property/value/update', data })
 | 
						|
}
 | 
						|
 | 
						|
// 删除属性值
 | 
						|
export const deletePropertyValue = (id: number) => {
 | 
						|
  return request.delete({ url: `/product/property/value/delete?id=${id}` })
 | 
						|
}
 | 
						|
 | 
						|
// 获得属性值精简列表
 | 
						|
export const getPropertyValueSimpleList = (propertyId: number): Promise<PropertyValueVO[]> => {
 | 
						|
  return request.get({ url: '/product/property/value/simple-list', params: { propertyId } })
 | 
						|
}
 |