Files
dvcp_v2_wxcp_app/src/saas/AppCountryAlbum/AppCountryAlbum.vue

48 lines
889 B
Vue
Raw Normal View History

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() {
this.$refs?.TabPage?.show()
this.$nextTick(() => {
this.injectJWeixin(['sendChatMessage', 'shareAppMessage', 'shareWechatMessage']).then(() => {
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType'])
})
})
}
}
</script>
<style lang="scss" scoped>
</style>