35 lines
448 B
Vue
35 lines
448 B
Vue
|
|
<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>
|