<template>
|
<div class="equipmentList">
|
<!-- 页头 -->
|
<IndexHeader :opacity="false"></IndexHeader>
|
<!-- 面包屑 -->
|
<!-- <div class="breadcrumb">
|
<el-breadcrumb separator=">">
|
<el-breadcrumb-item :to="{ path: '/manageCenter' }">管理中心</el-breadcrumb-item>
|
<el-breadcrumb-item>设备管理</el-breadcrumb-item>
|
</el-breadcrumb>
|
</div> -->
|
<div class="breadcrumb">
|
<div style="font-family: PingFang SC Regular;" @click="$router.push('/manageCenter')">管理中心 ></div>
|
<div style="font-family: PingFang SC Bold;">设备管理</div>
|
</div>
|
|
<!-- 主要内容 -->
|
<Content></Content>
|
|
<!-- 页尾 -->
|
<!-- <Footer :isBlack="true"></Footer> -->
|
</div>
|
</template>
|
|
<script>
|
import IndexHeader from "@/components/IndexHeader"
|
import Content from "@/views/equipmentManagement/equipmentList/components/Content"
|
import Footer from "@/components/Footer"
|
|
export default {
|
components: {
|
IndexHeader,
|
Content
|
// Footer
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.equipmentList {
|
background-color: #34405a;
|
padding-bottom: 24px;
|
.breadcrumb {
|
padding: 24px 0;
|
width: 95%;
|
// background-color: #34405a;
|
margin: 0 auto;
|
display: flex;
|
justify-content: flex-start;
|
|
font-size: 14px;
|
font-weight: normal;
|
line-height: 22px;
|
letter-spacing: 0px;
|
color: #ffffff;
|
div {
|
margin-right: 8px;
|
}
|
}
|
// background-color: #34405a;
|
// .breadcrumb {
|
// height: 10px;
|
// }
|
// .el-breadcrumb {
|
// margin-top: 48px;
|
// margin-bottom: 24px;
|
|
// ::v-deep span {
|
// color: #666;
|
// }
|
// }
|
}
|
</style>
|