fei
2025-09-22 80cbda0daa36d369479746ae4f432d0c13a17a56
src/api/system/placeName.js
@@ -8,6 +8,14 @@
    params: query
  })
}
// 查询【请填写功能名称】列表
export function listAllPlaceName() {
  return request({
    url: '/system/placeName/listAll',
    method: 'get',
  })
}
// 查询【请填写功能名称】详细
export function getName(id) {
@@ -42,3 +50,15 @@
    method: 'delete'
  })
}
//导入
export function enload(data) {
  return request({
    url: '/system/placeName/importData',
    method: 'post',
      headers: {
      'Content-Type': 'multipart/form-data'
    },
    data: data
  })
}