base.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // 上格云
  2. const brsgServer = {
  3. duoduoUrl: 'https://duoduoenv.sagacloud.cn',
  4. projectId: 'Pj1101080259',
  5. pubname: 'sagacareAndtenantslink',
  6. openid: 'sagacareAndtenantslinkTest'
  7. }
  8. const companyName = ' tenantslink';
  9. // 是否显示企业智慧空间首页的定位按钮
  10. const isShowLocationEntrance = true;
  11. // 是否显示面容通行入口(领取邀请函页面)
  12. const isShowFaceEntrance = true;
  13. // 提审微信审核或测试用的邀请函id
  14. const testInvitationId = 'b147722800b645748499cae71a8b863e'; // 团队版
  15. // const testInvitationId = 'a195db0b47b94c12904d024d8ea690b6'; // 个人版
  16. // 邀请函上的地址信息
  17. const AppLocation = {
  18. building: {
  19. invitationAddress: '东三环北路嘉铭中心',
  20. latitude: 39.928029,
  21. longitude: 116.460451,
  22. name: '东三环北路嘉铭中心',
  23. address: '北京市朝阳区东三环北路27号'
  24. },
  25. enterprise: {
  26. invitationAddress: '金隅智造工场N2号楼3层',
  27. latitude: 40.057800,
  28. longitude: 116.357544,
  29. name: '博锐尚格总部',
  30. address: '北京市海淀区金隅智造工场N2号楼3层'
  31. },
  32. experience: {
  33. invitationAddress: '荷华明城Funhub2楼',
  34. latitude: 39.904241,
  35. longitude: 116.43446,
  36. name: '北京大方空间科技有限公司',
  37. address: '北京市东城区建国门南大街7号'
  38. }
  39. }
  40. // 是否开启距离权限控制
  41. const isOpenLocationPermisson = true;
  42. export default {
  43. companyName,
  44. isShowLocationEntrance,
  45. isShowFaceEntrance,
  46. testInvitationId,
  47. AppLocation,
  48. brsgServer,
  49. isOpenLocationPermisson
  50. };