8 lines
422 B
TypeScript
8 lines
422 B
TypeScript
import { getValue } from '@/utils/common';
|
|
import axios from 'axios'
|
|
axios.defaults.baseURL = 'https://case.sy-my.net/beelink/public/home/';
|
|
axios.defaults.headers.common['Authorization'] = "Bearer " + getValue("token");
|
|
axios.defaults.headers.common['Language'] = !getValue("Lanvuage") ? 'zh' : getValue("Lanvuage");
|
|
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
|
|
|
|
export default axios |