Files
HTFX-CRM-APP/services/contact/index.ts

10 lines
273 B
TypeScript
Raw Normal View History

2025-07-07 15:55:44 +08:00
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' });
}