Explorar el Código

feat: 进入页面隐藏app

cuiyalong hace 4 años
padre
commit
ca7611c115
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      jydocs-mobile/src/App.vue

+ 4 - 0
jydocs-mobile/src/App.vue

@@ -11,6 +11,7 @@
 </template>
 <script>
 import layout from '@/components/layout.vue'
+import { hiddenBottomBar } from '@/utils/globalFunctionsForApp'
 export default {
   name: 'App',
   components: {
@@ -30,6 +31,9 @@ export default {
       // cashViews: ['home', 'share-list', 'auth-partner'],
       env: this.$env
     }
+  },
+  mounted () {
+    hiddenBottomBar()
   }
 }
 </script>