app.ts 311 B

123456789101112131415
  1. import { ApiServiceEnum, defHttp } from '@/utils/http/axios';
  2. enum Api {
  3. getAuthProperties = 'public/auth/getAuthProperties',
  4. }
  5. /**
  6. * 获取认证参数
  7. */
  8. export const getAuthPropertiesApi = () => {
  9. return defHttp.post({
  10. service: ApiServiceEnum.SMART_AUTH,
  11. url: Api.getAuthProperties,
  12. });
  13. };