jiuyiUniapp/jiuyi2/common/js/config.js

33 lines
611 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-19 13:55:21 +08:00
host: 'https://539c1514.r24.cpolar.top',
// host: 'http://gfjds5.natappfree.cc',
2025-01-02 01:01:23 +08:00
// #endif
2025-01-19 22:56:45 +08:00
// 支付方式配置
payType: {
score: {
name: '积分',
img: '/static/images/pay/wechat.png',
},
balance: {
name: '余额',
img: '/static/images/pay/wechat.png',
},
},
2024-12-18 15:46:27 +08:00
// 腾讯im聊天
TChat: {
// appid
2025-01-05 20:06:22 +08:00
SDKAppID: '1600067241',
2024-12-18 15:46:27 +08:00
// 验签
2025-01-05 20:06:22 +08:00
secretKey: '955ac1c071050fe1ed0be74470409495cfb4faa5faf7c88ea58b585890433708',
2024-12-18 15:46:27 +08:00
//
userSig: '',
},
}
export default config