智慧园区前端大屏
linwe
2024-11-22 5221bb4832912e7e494b76e4fdf64eb0c98fce50
1
2
3
4
5
6
7
8
9
10
import request from 'utils/http'
 
export const getFacilityList = (params) => {
    const url = `/yw/facility/getFacilityList`;
    return request({
        url,
        method: 'get',
        params,
    });
};