shuishen
2021-12-21 0e461a232cce6e52fbfd071788bdd7294d51e397
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * @Author: Morpheus
 * @Date: 2021-05-09 15:17:44
 * @Last Modified by: liu
 * @Last Modified time: 2021-12-20 17:05:16
 */
// 生活设施
import request from '@/router/axios'
 
 
//食堂餐厅
export const getListlivingFacilitiesr = (params) => { //获取生活设施
    return request({
        url: 'blade-restaurant/restaurant/list',
        method: 'get',
        params: params
    })
}
//超市
export const getListsupermarket = (params) => { //获取生活设施
    return request({
        url: 'blade-supermarket/supermarket/list',
        method: 'get',
        params: params
    })
}