alert.vue 538 Bytes
<template>
    <view class="content">
		<text>告警</text>
        <!-- 公共组件-每个页面必须引入 -->
        <public-module></public-module>
        <f-tabbar :isFillHeight="false"></f-tabbar>
    </view>
</template>

<script>
import fTabbar from '@/components/module/f-tabbar/f-tabbar';
export default {
    components: {
        fTabbar
    },
    data() {
        return {
        }
    },
    onLoad(e) {
        // 隐藏原生的tabbar
        uni.hideTabBar();
    },
}
</script>

<style lang="scss" scoped>
</style>