| File was renamed from src/api/userHouse/list/userHouseList.js |
| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/page', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const getPageList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/page', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const remove = (ids) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/remove', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | |
| | | |
| | | export const add = (row) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/submit', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/submit', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | |
| | | export const update = (row) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/update', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/update', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | |
| | | export const getUserHouseLabelDetatil = (id) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/detail', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/detail', |
| | | method: 'get', |
| | | params: { |
| | | id |
| | |
| | | |
| | | export const saveOrUpdateHouseLabel = (ids, type) => { |
| | | return request({ |
| | | url: '/api/blade-houseLabel/userHouseLabel/saveOrUpdateHouseLabel', |
| | | url: '/ssoapi/blade-houseLabel/userHouseLabel/saveOrUpdateHouseLabel', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | |
| | | } |
| | | export const saveOrUpdateHouseholdLabel = (row) => { |
| | | return request({ |
| | | url: '/api/blade-householdLabel/householdLabel/saveOrUpdateHouseholdLabel', |
| | | url: '/ssoapi/blade-householdLabel/householdLabel/saveOrUpdateHouseholdLabel', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | | } |
| | | export const removeHouseholdLabel = (row) => { |
| | | return request({ |
| | | url: '/api/blade-householdLabel/householdLabel/removeHouseholdLabel', |
| | | url: '/ssoapi/blade-householdLabel/householdLabel/removeHouseholdLabel', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | |
| | | export const statisticalLabels = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-householdLabel/householdLabel/getRegionStatisticalLabels', |
| | | url: '/ssoapi/blade-householdLabel/householdLabel/getRegionStatisticalLabels', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | } |
| | | export const getCommunityStatisticalLabels = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-householdLabel/householdLabel/getCommunityStatisticalLabels', |
| | | url: '/ssoapi/blade-householdLabel/householdLabel/getCommunityStatisticalLabels', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |