You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
411 B
16 lines
411 B
import request from '@/utils/request' |
|
|
|
// 标签列表 |
|
export function labelLists(params?: any) { |
|
return request.get({ url: '/system/label/list', params }) |
|
} |
|
|
|
// 标签新增 |
|
export function labelAdd(params?: any) { |
|
return request.post({ url: '/system/label/add', params }) |
|
} |
|
|
|
// 标签插入 |
|
export function labelInsert(params?: any) { |
|
return request.post({ url: '/system/label/insert', params }) |
|
} |