global.js 333 B

12345678910111213141516
  1. let global = {
  2. imgBaseUrl:'http://139.9.103.171:8888/',
  3. //不知道为啥,直接在html里用$global.imgBaseUrl的方式获取不了值
  4. //只好写个方法兼容在html中获取
  5. getImgBaseUrl:()=>{
  6. return 'http://139.9.103.171:8888/'
  7. },
  8. wxParams:{
  9. appid:'wxa05f3aff24dba698'
  10. },
  11. }
  12. export default global