1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| /*
| * @Author: Morpheus
| * @Date: 2021-05-09 15:17:44
| * @Last Modified by: liu
| * @Last Modified time: 2021-12-21 10:00:12
| */
| // 停车场
| import request from '@/router/axios'
|
|
|
| export const getListparking = (params) => { //获取生活设施
| return request({
| url: 'blade-parking/parking/list',
| method: 'get',
| params: params
| })
| }
|
|