jiuyiUniapp/service/common/js/config.js

33 lines
586 B
JavaScript
Raw Normal View History

2025-02-13 09:59:20 +08:00
// 配置
const config = {
// 接口域名
// #ifdef H5
2025-02-18 11:38:36 +08:00
host: 'http://localhost:8888',
2025-02-13 09:59:20 +08:00
// #endif
2025-02-16 22:34:16 +08:00
// #ifndef H5
// host: 'http://91f.xyz:8080',
2025-02-23 15:23:44 +08:00
host: 'https://1a880cd5.r24.cpolar.top/',
2025-02-13 09:59:20 +08:00
// #endif
// 支付方式配置
payType: {
score: {
name: '积分',
icon: '/static/score.png',
},
balance: {
name: '余额',
icon: '/static/balance.png',
},
},
// 腾讯im聊天
TChat: {
// appid
SDKAppID: '1600067241',
// 验签
secretKey: '955ac1c071050fe1ed0be74470409495cfb4faa5faf7c88ea58b585890433708',
//
userSig: '',
},
}
export default config