35 lines
655 B
JavaScript
35 lines
655 B
JavaScript
|
// 配置
|
||
|
const config = {
|
||
|
// 接口域名
|
||
|
// #ifdef H5
|
||
|
host: 'http://localhost:5173',
|
||
|
// #endif
|
||
|
// #ifndef H5
|
||
|
host: 'http://91f.xyz:8080',
|
||
|
// host: 'http://192.168.0.110:8080',
|
||
|
// host: 'http://192.168.0.105:8080',
|
||
|
// host: 'http://192.168.0.114:8080',
|
||
|
// #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
|