| New file |
| | |
| | | /* |
| | | * @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, |
| | | }) |
| | | }; |
| | | |