22 lines
660 B
TypeScript
22 lines
660 B
TypeScript
import request from '@/utils/request'
|
|
|
|
export function pointsProductLists(params?: any) {
|
|
return request.get({ url: '/points.pointsProduct/lists', params })
|
|
}
|
|
|
|
export function pointsProductAdd(params: any) {
|
|
return request.post({ url: '/points.pointsProduct/add', params })
|
|
}
|
|
|
|
export function pointsProductEdit(params: any) {
|
|
return request.post({ url: '/points.pointsProduct/edit', params })
|
|
}
|
|
|
|
export function pointsProductDelete(params: any) {
|
|
return request.post({ url: '/points.pointsProduct/delete', params })
|
|
}
|
|
|
|
export function pointsProductDetail(params: any) {
|
|
return request.get({ url: '/points.pointsProduct/detail', params })
|
|
}
|