fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import service from './service'
 
// 获取地区api
export class AddressResourcesApi {
  /**
   *查询限购区域
   * @param {*} showLoading
   * @returns
   */
   getLimitArea = (showLoading = true) => {
     return service.get('wly-customization-service/forbidAreaInfo/findForbidAreaInfomation', { showLoading })
   }
 
  /**
 *新增限制区域
 * @param {*} showLoading
 * @returns
 */
  saveLimitArea= (showLoading = true) => {
    return service.post('wly-customization-service/forbidAreaInfo/saveForbidAreaInfo', showLoading)
  }
 
  /**
 *删除限制区域
 * @param {*} showLoading
 * @returns
 */
 deleteLimitArea= (params, showLoading = true) => {
   return service.post('wly-customization-service/forbidAreaInfo/deleteForbidAreaInfomation', params, showLoading)
 }
}
export default new AddressResourcesApi()