config.js 624 B

1234567891011121314151617181920212223242526272829303132333435
  1. const config = {
  2. // wxAppid:'wxbe90cc7c5233dd84',// 测试wxAppid
  3. //#ifdef APP-PLUS
  4. platform:'app',
  5. //#endif
  6. //#ifdef H5
  7. platform:'h5',
  8. //#endif
  9. //64
  10. baseUrl:'https://wx.hw.hongweisoft.com/parking/inspection',// 64服务器
  11. upFileUrl:'https://wx.hw.hongweisoft.com/ycpharmacy/file/upload/single/minio',
  12. // 正式
  13. // baseUrl:'',// 64服务器
  14. // upFileUrl:'',
  15. // 设备类型
  16. deviceTypeList:[
  17. {label:'全部类型',value:''},
  18. {label:'地磁',value:'1'},
  19. {label:'车位锁',value:'2'},
  20. {label:'led显示屏',value:'3'},
  21. {label:'车牌识别设备',value:'4'}
  22. ]
  23. }
  24. export {
  25. config
  26. }