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
27
28
29
| /*
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2025-08-05 22:45:15
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2025-08-05 22:46:12
| * @FilePath: \jsProject\bigScreen\src\api\base.js
| * @Description:
| *
| * Copyright (c) 2025 by shuishen, All Rights Reserved.
| */
| import request from '@/utils/http'
|
| export const getEmePool = (params) => {
| const url = `/yw/emergencySpace/getEmePool`
| return request({
| url,
| method: 'get',
| params,
| })
| }
|
| export const getNearbySupplies = (params) => {
| const url = `/yw/supplies/getNearbySupplies`
| return request({
| url,
| method: 'get',
| params,
| })
| };
|
|