34 lines
643 B
JavaScript
Raw Normal View History

2024-12-20 19:04:23 +08:00
// uni版本号
export const uniVersion = '1.0.18'
2024-12-20 19:04:23 +08:00
// uni构建号
export const uniBuildNumber = 19
2024-12-20 19:04:23 +08:00
// web版本号
2024-12-24 15:19:49 +08:00
export const webVersion = '1.0.1'
2024-12-20 19:04:23 +08:00
// web构建号
2024-12-24 15:19:49 +08:00
export const webBuildNumber = 2
2024-10-12 14:35:58 +08:00
// 环境配置
export const configs = {
DEV: {
name: 'DEV',
baseUrl: 'https://dev.cloud.star-lock.cn/sdk'
},
PRE: {
name: 'PRE',
2024-11-04 15:30:44 +08:00
baseUrl: 'https://pre.cloud.star-lock.cn/sdk'
2024-10-12 14:35:58 +08:00
},
2024-11-28 16:35:19 +08:00
PRE_SKY: {
name: 'PRE_SKY',
baseUrl: 'https://pre.cloud.star-lock.cn/sdk'
},
2024-10-12 14:35:58 +08:00
XHJ: {
name: 'XHJ',
baseUrl: 'https://cloud.xhjcn.ltd/sdk'
2024-10-12 14:35:58 +08:00
},
SKY: {
name: 'SKY',
baseUrl: 'https://cloud.skychip.top/sdk'
2024-10-12 14:35:58 +08:00
}
}