//消息 <template> <view class="message"> <TabBar></TabBar> 消息 </view> </template> <script> import TabBar from '@/components/tabBar/tabBar.vue'; export default { components: { TabBar, }, data() { return { } }, onShow() { let pages = getCurrentPages(); const curPage = pages[pages.length - 1]; this.currentPagePath = curPage.route; uni.setStorageSync('currentPagePath', this.currentPagePath); }, methods: { } } </script> <style lang="scss"> .message { } </style>