zhitong.yu
8 天以前 378d781e6f35f89652aa36e079a8b7fc44cea77e
1
2
3
4
5
6
7
8
import http from "@/api";
// 当前语言
export const getCurrentLanguage = () => {
  return http.get(`/getCurrentLanguage`);
};
export const setLanguage = (params: { lang: string }) => {
  return http.post(`/setLanguage`, params);
};