监测对象
This commit is contained in:
34
src/apps/AppMonitoringObject/AppMonitoringObject.vue
Normal file
34
src/apps/AppMonitoringObject/AppMonitoringObject.vue
Normal 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>
|
||||
Reference in New Issue
Block a user