1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| /*
| * @Author: Morpheus
| * @Date: 2021-05-09 15:17:44
| * @Last Modified by: Morpheus
| * @Last Modified time: 2021-12-14 08:58:30
| */
| // 党群机构
| import request from '@/router/axios'
|
| export const setlabel = (data) => {
| return request({
| url: 'tagging/tagging/save',
| method: 'post',
| data: data
| })
| }
|
| export const getlabel = () => {
| return request({
| url: 'tagging/tagging/list',
| method: 'get',
| })
| }
|
| export const deletelabel = (id) => {
| return request({
| url: 'tagging/tagging/remove',
| method: 'post',
| params: {
| ids: id
| }
| })
| }
|
|