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