BUG 25947

This commit is contained in:
aixianling
2021-12-24 14:03:22 +08:00
parent 22ee8506a0
commit 256ca9060f

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="AppPageInteraction"> <div class="AppPageInteraction">
<AiListPage :label="label" :appList="appList" :headerBg="headerBg" /> <AiListPage :label="label" :appList="appList" :headerBg="headerBg"/>
</div> </div>
</template> </template>
@@ -34,17 +34,18 @@ export default {
created() { created() {
uni.setNavigationBarTitle({title: '居民互动'}) uni.setNavigationBarTitle({title: '居民互动'})
}, },
methods: { mounted() {
document.title = "居民互动"
}, }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
uni-page-body{ uni-page-body {
height: 100%; height: 100%;
} }
.AppPageInteraction{
.AppPageInteraction {
height: 100%; height: 100%;
} }
</style> </style>