feat(): 增加数据接入、规则引擎监控页面
parent
771ac40c75
commit
95b60fa213
|
@ -197,6 +197,30 @@ let routeResponse = {
|
||||||
"noCache": false,
|
"noCache": false,
|
||||||
"link": null
|
"link": null
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DataAssets",
|
||||||
|
"path": "data-assets",
|
||||||
|
"hidden": false,
|
||||||
|
"component": "monitor/dataAssets/index",
|
||||||
|
"meta": {
|
||||||
|
"title": "数据连接池",
|
||||||
|
"icon": "database",
|
||||||
|
"noCache": false,
|
||||||
|
"link": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "RuleEngine",
|
||||||
|
"path": "rule-engine",
|
||||||
|
"hidden": false,
|
||||||
|
"component": "monitor/ruleEngine/index",
|
||||||
|
"meta": {
|
||||||
|
"title": "规则引擎",
|
||||||
|
"icon": "nested",
|
||||||
|
"noCache": false,
|
||||||
|
"link": null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
<template>
|
||||||
|
<div class="app-container">数据接入监控</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "DataAssetsMonitor",
|
||||||
|
data() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
},
|
||||||
|
methods: {}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,19 @@
|
||||||
|
<template>
|
||||||
|
<div class="app-container">规则引擎监控</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "RuleEngineMonitor",
|
||||||
|
data() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
},
|
||||||
|
methods: {}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue