config.js 576 B

12345678910111213141516171819202122232425262728293031323334
  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:'道闸',value:'3'}
  21. ]
  22. }
  23. export {
  24. config
  25. }