dubbo文档优化

This commit is contained in:
暮光:城中城
2020-11-18 00:37:26 +08:00
parent e0289aa247
commit 95ec165d49
40 changed files with 2081 additions and 1127 deletions

View File

@@ -4,13 +4,14 @@
<el-tab-pane :label="pageTabNameMap[item.fullPath]||item.name" :name="item.fullPath" v-for="item in pageList"/>
</el-tabs>
<keep-alive>
<router-view :key="$route.fullPath" @initLoadDataList="initLoadDataList" @loadDatasourceList="loadDatasourceList"/>
<router-view :key="$route.fullPath" :dubboDocMap="dubboDocMap" :treePathDataMap="treePathDataMap"></router-view>
</keep-alive>
</div>
</template>
<script>
export default {
props: ["dubboDocMap", "treePathDataMap"],
name: 'PageTableView',
components: {},
data() {
@@ -44,12 +45,6 @@
},
},
methods: {
initLoadDataList(param) {
this.$emit('initLoadDataList', param);
},
loadDatasourceList() {
this.$emit('loadDatasourceList');
},
changePage(key) {
this.activePage = key.name;
},