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
| import http from '@/http/api.js'
|
|
|
| // 住户标签修改
| export const saveOrUpdateHouseholdLabel = (data) => {
| return http.request({
| url: 'blade-householdLabel/householdLabel/saveOrUpdateHouseholdLabel',
| method: 'POST',
| data
| })
| }
|
| // 住户标签撤销
| export const removeHouseholdLabel = (data) => {
| return http.request({
| url: 'blade-householdLabel/householdLabel/removeHouseholdLabel',
| method: 'POST',
| data
| })
| }
|
| //设置房屋标签
| export const setHouseLabel = (data) => {
| return http.request({
| url: 'blade-householdLabel/householdLabel/saveOrUpdateHouseLabel',
| method: 'POST',
| data
| })
| }
|
|