Files
HTFX-CRM-Sales/services/contact/index.ts
2025-07-07 16:05:18 +08:00

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' });
}