Files
dvcp_v2_wxcp_app/src/apps/AppMonitoringObject/AppMonitoringObject.vue

35 lines
448 B
Vue
Raw Normal View History

2022-03-24 11:17:05 +08:00
<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>