orgStatus.vue 512 Bytes
<template>
	<view class="content">
		<text>组态</text>
        <!-- 公共组件-每个页面必须引入 -->
        <public-module></public-module>
        <f-tabbar></f-tabbar>
	</view>
</template>

<script>
import fTabbar from '@/components/module/f-tabbar/f-tabbar';

export default {
    components:{
        fTabbar,
    },
    data() {
        return {
        }
    },
    onLoad() {
        // 隐藏原生的tabbar
        uni.hideTabBar();
    },

}
</script>

<style lang="scss" scoped>

</style>