app.js 453 B

12345678910111213141516
  1. import { http } from '@/utils/http';
  2. /**
  3. * @description 得到验证码图像
  4. */
  5. export function GetVerificationCodeImage() {
  6. return http.get(`${process.env.VUE_APP_FileServer}?MethodName=login_control-GetVerificationCodeImage`);
  7. }
  8. /**
  9. * @description 得到系统标志
  10. * @param {object} data 请求数据
  11. */
  12. export function GetLogo(data) {
  13. return http.post(`${process.env.VUE_APP_FileServer}?MethodName=sys_config_manager-GetLogo`, data);
  14. }