ZZJ
2022-07-15 dfe63ab2309fe968646944a5b896d9b8c2207f4f
src/api/system.ts
@@ -517,3 +517,34 @@
  })
}
export const getAuthInfo = () => {
  return request({
    url: "/data/api-v/sysset/showAuthInfo",
    method: "get"
  })
}
export const setAuthInfo = (data: any) => {
  return request({
    url: "/data/api-v/sysset/setAuthInfo",
    method: "post",
    data
  })
}
export const getRemoteServer = (data: any) => {
  return request({
    url: "/data/api-v/sysset/getRemoteServer",
    method: "post",
    data
  })
}
export const setRemoteServer = (data: any) => {
  return request({
    url: "/data/api-v/sysset/setRemoteServer",
    method: "post",
    data:qs.stringify(data)
  })
}