You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
300 B
9 lines
300 B
import axios from 'axios';
|
|
let { proxyUrl } = require('@/config/setting');
|
|
|
|
const baseUrl = process.env.VUE_APP_BASE_URL;
|
|
const tall = `${baseUrl}/gateway/tall3/v3.0`;
|
|
const users = `${tall}/users`;
|
|
|
|
// 通过userId获取token
|
|
export const getUserId = params => axios.get(`${users}/userId`, params);
|
|
|