import { $fysp } from '../index'; /** * 工地夜间施工许可证相关API */ export default { /** * 查询工地夜间施工许可证 */ fetchRecord({ cityCode, districtCode, page, perPage = 20 }) { return $fysp .get(`nightwork/record/all`, { params: { cityCode, districtCode, page, perPage } }) .then((res) => res.data); } };