1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| 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);
| }
| };
|
|