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