linwei
2024-01-10 f89867e71936474a1afd1994e49a3f55d937ec33
src/api/userHouse/list/userHouseList.js
@@ -70,3 +70,30 @@
    }
  })
}
export const saveOrUpdateHouseholdLabel = (row) => {
  return request({
    url: '/api/blade-householdLabel/householdLabel/saveOrUpdateHouseholdLabel',
    method: 'post',
    data: row
  })
}
export const removeHouseholdLabel = (row) => {
  return request({
    url: '/api/blade-householdLabel/householdLabel/removeHouseholdLabel',
    method: 'post',
    data: row
  })
}
export const statisticalLabels = (current, size, params) => {
  return request({
    url: '/api/blade-houseLabel/userHouseLabel/statisticalLabels',
    method: 'get',
    params: {
      ...params,
      current,
      size,
    }
  })
}