App.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <template>
  2. <!-- ios头部padding适配 -->
  3. <div id='app'>
  4. <div id='fengMap' class='fengMap'></div>
  5. <!-- 顶部navbar -->
  6. <NarBar class='nav-bar' v-if='!$route.meta.hideNarBar' />
  7. <!-- <div class='container'> -->
  8. <keep-alive>
  9. <router-view v-if='$route.meta.keepAlive' />
  10. </keep-alive>
  11. <router-view v-if='!$route.meta.keepAlive' />
  12. <!-- </div> -->
  13. <!-- 底部tabbar -->
  14. <van-tabbar v-show='$route.meta.showTabbar' class='tabber' v-model='active' :fixed='true' @change='changeTabbar'>
  15. <van-tabbar-item icon='home-o'>项目概况</van-tabbar-item>
  16. <van-tabbar-item icon='search'>楼层功能</van-tabbar-item>
  17. <van-tabbar-item icon='friends-o'>设备设施</van-tabbar-item>
  18. <van-tabbar-item icon='setting-o'>其他事项</van-tabbar-item>
  19. </van-tabbar>
  20. </div>
  21. </template>
  22. <script>
  23. import Vue from 'vue'
  24. import { mapGetters, mapActions, mapMutations } from 'vuex'
  25. import { SFengParser } from '@saga-web/feng-map'
  26. import { setFloor } from '@/api/public.js'
  27. import { Tabbar, TabbarItem } from 'vant'
  28. Vue.use(Tabbar).use(TabbarItem)
  29. import store from './store/index'
  30. import NarBar from './components/Navbar'
  31. import { osInfo } from './utils/util'
  32. window.fengmapData = null
  33. export default {
  34. name: 'App',
  35. props: {},
  36. components: { NarBar },
  37. data() {
  38. return {
  39. active: 0,
  40. // 路由字典
  41. routeDict: {
  42. 0: 'Overview',
  43. 1: 'FloorFunc',
  44. 2: 'EquipmentFacilities',
  45. 3: 'OtherMatter',
  46. },
  47. // appTitle字典
  48. titleDict: {
  49. 0: '管理说明书',
  50. 1: '楼层功能',
  51. 2: '设备设施',
  52. 3: '其他事项',
  53. },
  54. isIOS: false, //是否是IOS
  55. key: '23f30a832a862c58637a4aadbf50a566',
  56. appName: '万达可视化系统',
  57. mapServerURL: `http://map.wanda.cn/editor`,
  58. mapthemeUrl: `http://map.wanda.cn/editor/webtheme`,
  59. }
  60. },
  61. beforeMount() {},
  62. created() {
  63. store.commit('SETSSOTOKEN', 'admin:liujiandong')
  64. console.log(window.location.href)
  65. this.SETHAVEFENGMAP(false)
  66. // 判断 安卓,ios
  67. const { os } = osInfo()
  68. if (os === 'iOS') {
  69. this.isIOS = true
  70. } else {
  71. this.isIOS = false
  72. }
  73. // 获取楼层列表
  74. this.getFloorList()
  75. },
  76. mounted() {
  77. console.log('环境变量', process.env.VUE_APP_RealEnv)
  78. if (this.plazaId) {
  79. this.getFengMap()
  80. } else {
  81. window.fengmapData = null
  82. }
  83. },
  84. computed: {
  85. ...mapGetters(['plazaId', 'fmapID']),
  86. },
  87. methods: {
  88. ...mapActions(['getfmapID', 'getFloors']),
  89. ...mapMutations(['SETHAVEFENGMAP']),
  90. getFengMap() {
  91. this.getfmapID().then(() => {
  92. this.getMap()
  93. })
  94. },
  95. getMap() {
  96. window.fengmapData = new SFengParser(
  97. 'fengMap',
  98. `${this.mapServerURL}/fmap/${this.fmapID}`,
  99. this.key,
  100. this.appName,
  101. null,
  102. this.mapthemeUrl
  103. )
  104. if (this.fmapID.includes('null')) {
  105. this.SETHAVEFENGMAP(0)
  106. }
  107. window.fengmapData.loadMap(this.fmapID, (a, b) => {
  108. const dataArr = b.map((item) => {
  109. return item.gname
  110. })
  111. // 获取主题数据
  112. window.fengmapData.loadTheme(`${this.mapServerURL}/webtheme/${this.fmapID}/${this.fmapID}.theme`).then((res) => {
  113. this.SETHAVEFENGMAP(1)
  114. })
  115. // 缓存楼层数据
  116. if (dataArr.length) {
  117. setFloor({ plazaId: this.plazaId }, dataArr)
  118. .then((res) => {
  119. console.log('缓存楼层', res)
  120. })
  121. .catch((error) => {
  122. console.log('缓存楼层', error)
  123. })
  124. }
  125. })
  126. },
  127. // 路由更改
  128. changeTabbar(active) {
  129. console.log(active)
  130. if (active == 1) {
  131. this.$router.push({ path: 'floorFunc', query: { categoryId: 'LCGN' } })
  132. } else {
  133. this.$router.push({ name: this.routeDict[active] })
  134. }
  135. store.commit('SETAPPTITLE', this.titleDict[active])
  136. },
  137. /**
  138. * 查询楼层列表
  139. */
  140. getFloorList() {
  141. this.getFloors()
  142. },
  143. },
  144. watch: {
  145. plazaId(plazaId) {
  146. console.log('项目id', plazaId)
  147. window.fengmapData = null
  148. // 当获取到到项目id,请求底图
  149. if (plazaId) {
  150. // 请求该项目下的楼层数据
  151. this.getFengMap()
  152. } else {
  153. window.fengmapData = null
  154. }
  155. },
  156. },
  157. }
  158. </script>
  159. <style lang="less">
  160. @import './style/common.less';
  161. .ios-padding {
  162. // padding-top: 15px;
  163. box-sizing: border-box;
  164. }
  165. // navbar高度
  166. .nav-bar {
  167. width: 100%;
  168. height: 50px;
  169. }
  170. .fengMap {
  171. position: fixed;
  172. width: 100px;
  173. height: 100px;
  174. z-index: -1;
  175. opacity: 0;
  176. }
  177. // .container {
  178. // height: calc(100% - 105px);
  179. // background-color: #aaa;
  180. // }
  181. .tabber {
  182. height: 50px;
  183. }
  184. </style>