1
2
3
4
5
6
7
8
9
10
| import request from "@/utils/request";
|
| export function getProperty(params, modelId) {
| return request({
| url: "https://cim.smartearth.cn/gisserver2/bimcheng/getProperty?modelId=" + modelId,
| method: 'get',
| params: params,
| showloading: false
| });
| }
|
|