You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
1.9 KiB
104 lines
1.9 KiB
4 years ago
|
<template>
|
||
|
<view class="left-window-style">
|
||
|
<view class="second-menu">
|
||
|
<component v-bind:is="active"></component>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import componentPage from '@/pages/tabBar/component/component.nvue'
|
||
|
import API from '@/pages/tabBar/API/API.nvue'
|
||
|
import extUI from '@/pages/tabBar/extUI/extUI.nvue'
|
||
|
import templatePage from '@/pages/tabBar/template/template.nvue'
|
||
|
import {
|
||
|
mapMutations,
|
||
|
mapState
|
||
|
} from 'vuex'
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
nav: [
|
||
|
'component',
|
||
|
'API',
|
||
|
'extUI',
|
||
|
'template'
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
props: {
|
||
|
matchLeftWindow: {
|
||
|
type: Boolean
|
||
|
}
|
||
|
},
|
||
|
components: {
|
||
|
componentPage,
|
||
|
API,
|
||
|
extUI,
|
||
|
templatePage
|
||
|
},
|
||
|
computed: {
|
||
|
...mapState({
|
||
|
active: state => state.active,
|
||
|
})
|
||
|
},
|
||
|
watch: {
|
||
|
matchLeftWindow: {
|
||
|
immediate: true,
|
||
|
handler(newMatches) {
|
||
|
this.setMatchLeftWindow(newMatches)
|
||
|
}
|
||
|
},
|
||
|
$route: {
|
||
|
immediate: true,
|
||
|
handler(newRoute) {
|
||
|
if (this.matchLeftWindow) {
|
||
|
if (newRoute.path === '/') {
|
||
|
uni.redirectTo({
|
||
|
url: 'pages/component/view/view'
|
||
|
})
|
||
|
} else if (!newRoute.matched.length) {
|
||
|
uni.redirectTo({
|
||
|
url: 'pages/error/404'
|
||
|
})
|
||
|
} else {
|
||
|
let active = newRoute.path.split('/')[2]
|
||
|
if (this.nav.includes(active)) {
|
||
|
if (active === 'component') {
|
||
|
active = 'componentPage'
|
||
|
}
|
||
|
if (active === 'template') {
|
||
|
active = 'templatePage'
|
||
|
}
|
||
|
this.setActive(active)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
...mapMutations(['setMatchLeftWindow', 'setActive']),
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
@import '../common/uni-nvue.css';
|
||
|
|
||
|
.left-window-style {
|
||
|
min-height: calc(100vh - var(--top-window-height));
|
||
|
background-color: #f8f8f8;
|
||
|
}
|
||
|
|
||
|
.second-menu {
|
||
|
width: 350px;
|
||
|
background-color: #F8F8F8;
|
||
|
}
|
||
|
|
||
|
.icon-image {
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
}
|
||
|
</style>
|