<template>
|
<el-tabs type="border-card">
|
<el-tab-pane label="静安夜间施工管理">
|
<JingAnNightConstruction></JingAnNightConstruction>
|
</el-tab-pane>
|
<el-tab-pane label="静安工地扬尘设备信息匹配">
|
<NewDevice></NewDevice>
|
</el-tab-pane>
|
<!-- <el-tab-pane label="新工地">
|
<NewConstruction></NewConstruction>
|
</el-tab-pane> -->
|
</el-tabs>
|
</template>
|
<script setup>
|
import NewDevice from './NewDevice.vue';
|
import NewConstruction from './NewConstruction.vue';
|
import JingAnNightConstruction from './JingAnNightConstruction.vue';
|
</script>
|
<style scoped></style>
|