6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { request } from '@/utils/request';
|
|
|
|
export function getDownList() {
|
|
return request({ url: '/api/app/down/queryDownList', method: 'GET' });
|
|
}
|