我的团队添加

This commit is contained in:
cbb
2025-12-29 15:09:44 +08:00
parent 3b9b142c21
commit 56fd844b75
22 changed files with 2346 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
import { getToken, removeToken } from './storage'
const BASE_URL = 'http://c36bd4b4.natappfree.cc'
const BASE_URL = import.meta.env.VITE_SYSTEM_URL
/**
* 网络请求封装
@@ -14,7 +14,7 @@ const request = options => {
method: 'GET',
data: {},
header: {
'deviceId': uni.getDeviceInfo().deviceId,
deviceId: uni.getDeviceInfo().deviceId,
'Content-Type': 'application/json' // 默认请求内容类型
}
}