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 }) }