监测对象

This commit is contained in:
liuye
2022-03-24 11:17:05 +08:00
parent 502db1f16d
commit 058f40fe19
11 changed files with 1791 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div class="AppMonitoringObject">
<List />
</div>
</template>
<script>
import List from "./List";
export default {
name: 'AppMonitoringObject',
components: {List},
appName: '监测对象',
data() {
return {
show: true
}
},
onShow() {
document.title = "监测对象"
},
}
</script>
<style lang="scss" scoped>
uni-page-body {
height: 100%;
}
.AppMonitoringObject {
height: 100%;
}
</style>