|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <el-container class="main-container">
|
|
|
|
|
|
+ <div class="main-container">
|
|
<el-container>
|
|
<el-container>
|
|
<el-aside class="main-aside">
|
|
<el-aside class="main-aside">
|
|
<!-- 开放平台 -->
|
|
<!-- 开放平台 -->
|
|
@@ -17,6 +17,8 @@
|
|
<template #title>相关接口</template>
|
|
<template #title>相关接口</template>
|
|
<el-menu-item index="1-3-1" @click="handlePath('1')">实体查询</el-menu-item>
|
|
<el-menu-item index="1-3-1" @click="handlePath('1')">实体查询</el-menu-item>
|
|
<el-menu-item index="1-3-2" @click="handlePath('2')">实体关系查询</el-menu-item>
|
|
<el-menu-item index="1-3-2" @click="handlePath('2')">实体关系查询</el-menu-item>
|
|
|
|
+ <el-menu-item index="1-3-3" @click="handlePath('3')">实体的属性查询</el-menu-item>
|
|
|
|
+ <el-menu-item index="1-3-4" @click="handlePath('4')">关系的属性查询</el-menu-item>
|
|
</el-sub-menu>
|
|
</el-sub-menu>
|
|
</el-sub-menu>
|
|
</el-sub-menu>
|
|
</el-menu>
|
|
</el-menu>
|
|
@@ -28,7 +30,7 @@
|
|
</router-view>
|
|
</router-view>
|
|
</el-main>
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
- </el-container>
|
|
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
@@ -45,6 +47,14 @@ const handlePath = (id) => {
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
.main-container {
|
|
.main-container {
|
|
height: 100%;
|
|
height: 100%;
|
|
|
|
+ max-width: 100%;
|
|
|
|
+ overflow: visible;
|
|
|
|
+
|
|
|
|
+ &>.el-container {
|
|
|
|
+ height: 100%;
|
|
|
|
+ width: 100%;
|
|
|
|
+ max-width: 100%;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.el-menu-open-platform {
|
|
.el-menu-open-platform {
|
|
@@ -60,5 +70,9 @@ const handlePath = (id) => {
|
|
.content-area {
|
|
.content-area {
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding-left: 305px;
|
|
padding-left: 305px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ width: 100%;
|
|
|
|
+ min-width: 0px;
|
|
|
|
+ overflow: visible;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|