fix: 将 admin 改为普通目录
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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 })
|
||||
}
|
||||
Reference in New Issue
Block a user