This commit is contained in:
liuye
2021-12-24 19:57:02 +08:00
parent 9ac4b84ccb
commit 4b63247b75
3 changed files with 9 additions and 1 deletions

View File

@@ -24,7 +24,9 @@ export default {
}, },
components: { Detail, List }, components: { Detail, List },
onShow() {
document.title = "乡村相册"
},
methods: { methods: {
onChange(e) { onChange(e) {
this.params = e.params this.params = e.params

View File

@@ -30,6 +30,9 @@ export default {
this.component = e.type this.component = e.type
} }
}, },
onShow() {
document.title = "网格管理"
}
} }
</script> </script>

View File

@@ -29,6 +29,9 @@ export default {
onChange(e) { onChange(e) {
this.params = e.params this.params = e.params
this.component = e.type this.component = e.type
},
onShow() {
document.title = "特殊人群"
} }
}, },
} }