整合上架版进入标准流程

This commit is contained in:
aixianling
2022-07-04 15:48:17 +08:00
parent 993b90857d
commit 16bbd9080f
311 changed files with 15 additions and 34 deletions

View File

@@ -0,0 +1,45 @@
<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(['getLocation', 'previewImage'])
})
}
}
</script>
<style lang="scss" scoped>
</style>