|
@@ -1,12 +1,14 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="page-organization-container">
|
|
|
|
|
- <div class="page-organization-header">
|
|
|
|
|
- <div class="page-organization-header-title"> 应急架构体系 </div>
|
|
|
|
|
|
|
+ <div class="safety-platform-container">
|
|
|
|
|
+ <div class="safety-platform-container__header">
|
|
|
|
|
+ <div class="breadcrumb-title"> 应急架构体系 </div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="page-organization-content">
|
|
|
|
|
|
|
+ <div class="safety-platform-container__main">
|
|
|
<OrgChart :treeData="treeData" />
|
|
<OrgChart :treeData="treeData" />
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="page-organization-footer"> 编辑 </div>
|
|
|
|
|
|
|
+ <div class="safety-platform-container__footer">
|
|
|
|
|
+ <el-button> 编辑 </el-button>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -31,40 +33,6 @@
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
-<style scoped>
|
|
|
|
|
- .page-organization-container {
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- height: 100%;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .page-organization-header {
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- height: 60px;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
- background-color: #f5f5f5;
|
|
|
|
|
- border-bottom: 1px solid #e0e0e0;
|
|
|
|
|
-
|
|
|
|
|
- .page-organization-header-title {
|
|
|
|
|
- font-size: 20px;
|
|
|
|
|
- font-weight: 500;
|
|
|
|
|
- color: #333;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .page-organization-content {
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- height: calc(100% - 120px);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .page-organization-footer {
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- height: 60px;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
- background-color: #f5f5f5;
|
|
|
|
|
- border-top: 1px solid #e0e0e0;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
|
+ @use '@/styles/page-details-layout.scss' as *;
|
|
|
</style>
|
|
</style>
|