123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // 上格云
- const brsgServer = {
- duoduoUrl: 'https://duoduoenv.sagacloud.cn',
- projectId: 'Pj1101080259',
- pubname: 'sagacareAndtenantslink',
- openid: 'sagacareAndtenantslinkTest'
- }
- const companyName = ' tenantslink';
- // 是否显示企业智慧空间首页的定位按钮
- const isShowLocationEntrance = true;
- // 是否显示面容通行入口(领取邀请函页面)
- const isShowFaceEntrance = true;
- // 提审微信审核或测试用的邀请函id
- const testInvitationId = 'b147722800b645748499cae71a8b863e'; // 团队版
- // const testInvitationId = 'a195db0b47b94c12904d024d8ea690b6'; // 个人版
- // 邀请函上的地址信息
- const AppLocation = {
- building: {
- invitationAddress: '东三环北路嘉铭中心',
- latitude: 39.928029,
- longitude: 116.460451,
- name: '东三环北路嘉铭中心',
- address: '北京市朝阳区东三环北路27号'
- },
- enterprise: {
- invitationAddress: '金隅智造工场N2号楼3层',
- latitude: 40.057800,
- longitude: 116.357544,
- name: '博锐尚格总部',
- address: '北京市海淀区金隅智造工场N2号楼3层'
- },
- experience: {
- invitationAddress: '荷华明城Funhub2楼',
- latitude: 39.904241,
- longitude: 116.43446,
- name: '北京大方空间科技有限公司',
- address: '北京市东城区建国门南大街7号'
- }
- }
- // 是否开启距离权限控制
- const isOpenLocationPermisson = true;
- export default {
- companyName,
- isShowLocationEntrance,
- isShowFaceEntrance,
- testInvitationId,
- AppLocation,
- brsgServer,
- isOpenLocationPermisson
- };
|