linwe
2023-11-12 b77cc2d2012ecb4b876538ac7aee3edac7db8a2f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
    })
}