2022-03-08 10:35:29 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="form">
|
|
|
|
|
<component ref="TabPage" :is="component" @change="onChange" :params="params"/>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Tabbar from './components/Tabbar.vue'
|
|
|
|
|
import { mapActions } from "vuex"
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'AppCountryAlbum',
|
|
|
|
|
appName: '乡村相册',
|
|
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
component: 'Tabbar',
|
|
|
|
|
params: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
Tabbar
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
...mapActions(['injectJWeixin']),
|
|
|
|
|
|
|
|
|
|
onChange(e) {
|
|
|
|
|
this.params = e.params
|
|
|
|
|
this.component = e.type
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onShow() {
|
2022-05-24 16:31:10 +08:00
|
|
|
// this.$refs?.TabPage?.show()
|
2022-03-08 10:35:29 +08:00
|
|
|
this.$nextTick(() => {
|
2022-05-24 16:31:10 +08:00
|
|
|
this.injectJWeixin(['getLocation', 'sendChatMessage', 'shareAppMessage', 'shareWechatMessage'])
|
2022-03-08 10:35:29 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
</style>
|