| 1234567891011121314151617181920212223 |
- // 全局配置文件
- export const config = {
- // API 基础地址(自动根据浏览器访问地址获取)
- get baseUrl() {
- return `http://59.32.228.147:81`
- },
-
- // 用户密钥
- userKey: 'b01a6a38926a47c2b55fc364b9afeccd',
-
- // 获取完整的 API URL
- getApiUrl(path) {
- return `${this.baseUrl}${path}`
- },
-
- // 获取请求头
- getHeaders() {
- return {
- 'Content-Type': 'application/json',
- 'USER-KEY': this.userKey
- }
- }
- }
|