智慧园区前端大屏
shuishen
2024-11-01 05b0f6104cc5e1ac06c8d1f553bbc3e32f6e6521
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import request from 'utils/http'
 
export const getDetail = (params) => {
    const url = `/yw/indParkInfo/getDetail`;
    return request({
        url,
        method: 'get',
        params,
    });
};
 
 
 
 
export const getPage = (params) => {
    const url = `/yw/firmInfo/page`;
    return request({
        url,
        method: 'get',
        params,
    });
};