|
@@ -2,7 +2,8 @@
|
|
|
// 配置请求根路径
|
|
|
const BASE_URL = process.env.UNI_BASE_URL;
|
|
|
|
|
|
-const request = (url, data, method = 'GET') => {
|
|
|
+const request = (requesUrl, data, method = 'GET') => {
|
|
|
+ let url = `${BASE_URL}${requesUrl}`
|
|
|
return new Promise((resolve, reject) => {
|
|
|
let header = {
|
|
|
"Content-Type": "application/json"
|
|
@@ -43,7 +44,8 @@ const request = (url, data, method = 'GET') => {
|
|
|
});
|
|
|
}
|
|
|
//不带token接口请求,首页
|
|
|
-const request1 = (url, data, method = 'GET') => {
|
|
|
+const request1 = (requesUrl, data, method = 'GET') => {
|
|
|
+ let url = `${BASE_URL}${requesUrl}`
|
|
|
return new Promise((resolve, reject) => {
|
|
|
let header = {
|
|
|
'Content-Type': 'application/json',
|