10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { request } from '@/utils/request';
|
|
|
|
export function getContactInfo() {
|
|
return request({ url: '/api/app/contactUs/queryContactUs', method: 'GET' });
|
|
}
|
|
|
|
export function getVideoList() {
|
|
return request({ url: '/api/app/contactUs/queryVideoList', method: 'GET' });
|
|
}
|