| 123456789101112131415161718 |
- import HttpAxios from '@/utils/axios'
- const baseUrl = 'http://localhost/api/Customer_Service_Online/login.php'
- /**
- * Tracking首页表格列数据
- */
- export const login = (params: any, config: any) => {
- return HttpAxios.get(
- `${baseUrl}`,
- {
- action: 'login',
- operate: 'do_login',
- ...params
- },
- config
- )
- }
|