jiuyiUniapp/jiuyi2/common/js/config.js

32 lines
691 B
JavaScript
Raw Normal View History

2024-12-18 15:46:27 +08:00
// 配置
const config = {
// 接口域名
2025-01-02 01:01:23 +08:00
// #ifdef H5
2024-12-31 17:07:01 +08:00
host: 'http://localhost:5173',
2025-01-02 01:01:23 +08:00
// #endif
// #ifndef H5
2025-01-05 00:13:29 +08:00
host: 'http://5310d716.r22.cpolar.top',
2025-01-02 23:36:48 +08:00
// host: 'http://192.168.1.236:8080',
2025-01-02 01:01:23 +08:00
// #endif
2024-12-18 15:46:27 +08:00
// 上传文件二级路径
uploadFilePath: "/homecommon/file/preview?fileName=",
// 上传视频二级路径
uploadVideoPath: '/homecommon/file/play?fileName=',
// 图片大小 单位m
img_size: 5,
// 视频限制大小 单位m
video_size: 300,
// h5路径
h5: '',
// 腾讯im聊天
TChat: {
// appid
SDKAppID: '1600057470',
// 验签
secretKey: '7d016821bf27a846739e209534abe4c4bba131559b3318e19f8ccf9294e08b29',
//
userSig: '',
},
}
export default config