代码拉取完成,页面将自动刷新
<template>
<scroll-view class="sidebar" scroll-y="true">
<uni-data-menu ref="menu" :value="currentMenu" :staticMenu="staticMenu" collection="opendb-admin-menus" :page-size="500"
:field="field" orderby="sort asc" active-text-color="#409eff" @select="select">
</uni-data-menu>
</scroll-view>
</template>
<script>
import {
mapState,
mapActions
} from 'vuex'
import config from '@/admin.config.js'
export default {
data() {
return {
...config.sideBar,
field: 'url as value, name as text, menu_id, parent_id, sort, icon, permission'
}
},
computed: {
...mapState('app', ['inited', 'navMenu', 'active']),
...mapState('user', ['userInfo']),
currentMenu() {
return this.splitFullPath(this.active)
}
},
// #ifdef H5
watch: {
$route: {
immediate: true,
handler(newRoute, oldRoute) {
if (newRoute.fullPath !== (oldRoute && oldRoute.fullPath)) {
this.changeMenuActive(newRoute.fullPath)
}
}
},
userInfo: {
immediate: true,
handler(newVal, oldVal) {
if (newVal) {
this.$nextTick(function(){
this.$refs.menu.load()
})
}
}
}
},
// #endif
methods: {
...mapActions({
changeMenuActive: 'app/changeMenuActive'
}),
select(e) {
let url = e.value
if (!url) {
url = this.active
}
this.clickMenuItem(url)
},
clickMenuItem(url) {
// #ifdef H5
if (url.indexOf('http') === 0) {
return window.open(url)
}
// #endif
// url 开头可用有 / ,也可没有
if (url[0] !== '/' && url.indexOf('http') !== 0) {
url = '/' + url
}
// TODO 后续要调整
uni.redirectTo({
url: url,
fail: () => {
uni.showModal({
title: '提示',
content: '页面 ' + url + ' 跳转失败',
showCancel: false
})
}
})
},
splitFullPath(path) {
if (!path) {
path = '/'
}
return path.split('?')[0]
},
}
}
</script>
<style lang="scss">
.sidebar {
position: fixed;
// top: var(--top-window-height); // useless
width: 240px;
height: calc(100vh - (var(--top-window-height)));
box-sizing: border-box;
border-right: 1px solid darken($left-window-bg-color, 8%);
background-color: $left-window-bg-color;
padding-bottom: 10px;
}
.title {
margin-left: 5px;
}
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。