wszhyWx/api/commonVariable.js

28 lines
619 B
JavaScript
Raw Normal View History

2023-09-28 10:07:02 +00:00
// 可修改的公共变量
let type = 'app'
// #ifdef APP-PLUS
type = "app"
// #endif
// #ifdef H5
type = "h5"
// #endif
// #ifdef MP-WEIXIN
type = "wxMini"
// #endif
// 在maps里面有一个地图的key,需要手动改变
const variable = {
name: "", //应用名字
whatType: type, //判断当前是哪端
// baseUrl: "http://hy.ecbeauty.cn", //线上测试接口的基础路径
baseUrl: "https://api.lihe-control.com", //线上接口的基础路径
mapKey: "", //jsapi
webKey: '', //webApi
wxMapKey: "", //小程序key
socket: ''
}
export default variable