nebula/pages/admin.vue

230 lines
5.8 KiB
Vue
Raw Normal View History

<template>
<el-row type="flex" justify="center" :gutter="8">
<el-col v-if="hasPermissions" :span="20">
<el-col :span="4">
<el-menu
:default-active="getActiveMenu"
class="el-menu-vertical-demo"
@select="handleSelectMenu">
2022-03-03 11:26:42 +08:00
<template v-for="menu in menus">
<el-menu-item :key="menu.name" :index="menu.name">
<i :class="menu.icon"></i>
<span slot="title">{{ menu.title }}</span>
</el-menu-item>
</template>
</el-menu>
</el-col>
<el-col :span="20">
2022-03-03 11:26:42 +08:00
<el-tabs v-model="editableTabsValue" type="card" @tab-remove="handleRemoveTab" @tab-click="handleClick">
<el-tab-pane
:key="item.name"
v-for="(item, index) in editableTabs"
:label="item.title"
:name="item.name"
:closable="item.closable"
>
<nuxt keep-alive :nuxt-child-key="item.name"/>
</el-tab-pane>
</el-tabs>
</el-col>
</el-col>
<el-col v-else class="text-center">
<el-alert
title="用户无权限"
type="warning"
center
show-icon
:closable="false">
</el-alert>
</el-col>
</el-row>
</template>
<script>
2022-03-03 11:26:42 +08:00
import _ from 'lodash'
export default {
name: "Admin",
data() {
return {
menus: [
{
title: 'Dashboard',
name: 'admin-dashboard',
path: '/admin/dashboard',
icon: 'el-icon-s-data',
closable: false
},
{
title: '文章管理',
name: 'admin-articles',
path: '/admin/articles',
icon: 'el-icon-tickets',
2022-03-03 11:26:42 +08:00
closable: true
},
{
title: '评论管理',
name: 'admin-comments',
path: '/admin/comments',
icon: 'el-icon-chat-line-square',
2022-03-03 11:26:42 +08:00
closable: true
},
{
title: '用户管理',
name: 'admin-users',
path: '/admin/users',
icon: 'el-icon-s-custom',
closable: true
},
{
title: '角色管理',
name: 'admin-roles',
path: '/admin/roles',
icon: 'el-icon-s-check',
closable: true
},
{
title: '专题管理',
name: 'admin-topics',
path: '/admin/topics',
icon: 'el-icon-postcard',
closable: true
},
{
title: '标签管理',
name: 'admin-tags',
path: '/admin/tags',
icon: 'el-icon-price-tag',
closable: true
},
{
title: '银行管理',
name: 'admin-banks',
path: '/admin/banks',
icon: 'el-icon-office-building',
closable: true
},
{
title: '银行卡管理',
name: 'admin-bank-accounts',
path: '/admin/bank-accounts',
icon: 'el-icon-bank-card',
closable: true
},
{
title: '货币规则',
name: 'admin-currency-rules',
path: '/admin/currency-rules',
icon: 'el-icon-document',
closable: true
2022-07-25 06:45:33 +08:00
},
{
title: '产品管理',
name: 'admin-products',
path: '/admin/products',
icon: 'el-icon-box',
closable: true
2022-03-03 11:26:42 +08:00
}
]
}
},
computed: {
editableTabs() {
return this.$store.state.admin.tabs;
},
editableTabsValue: {
get() {
return this.$store.state.admin.activeTab;
},
2022-03-03 11:26:42 +08:00
set(value) {
this.$store.commit('admin/updateActiveTab', value);
}
},
2022-03-03 11:26:42 +08:00
getActiveMenu() {
return this.$store.state.activeMenu;
},
hasPermissions() {
return this.$store.getters.hasPermissions('blog_admin');
}
},
methods: {
handleRemoveTab(targetName) {
let tabs = this.editableTabs;
let activeName = this.editableTabsValue;
if (activeName === targetName) {
tabs.forEach((tab, index) => {
if (tab.name === targetName) {
let nextTab = tabs[index + 1] || tabs[index - 1];
if (nextTab) {
activeName = nextTab.name;
}
2022-03-03 11:26:42 +08:00
}
});
}
this.$store.commit('admin/updateActiveTab', activeName);
this.$store.commit('admin/updateTags', tabs.filter(tab => tab.name !== targetName))
this.$router.push({
2022-06-21 08:33:33 +08:00
name: activeName,
params: {
reset: '0'
}
2022-03-03 11:26:42 +08:00
})
},
handleClick(item) {
let _ts = this
this.$store.commit('admin/updateActiveTab', item.name);
let result = _.findIndex(_ts.editableTabs, function (tab) {
return tab.name === item.name;
})
if (result === -1) {
let index = _.findIndex(_ts.menus, function (menu) {
return menu.name === item.name;
})
_ts.$store.commit('admin/pushTags', _ts.menus[index])
}
_ts.$router.push({
2022-06-21 08:33:33 +08:00
name: item.name,
params: {
reset: '0'
}
2022-03-03 11:26:42 +08:00
})
},
handleSelectTab(item) {
let _ts = this
this.$store.commit('admin/updateActiveTab', item);
2022-06-21 08:33:33 +08:00
let reset = '0'
2022-03-03 11:26:42 +08:00
let result = _.findIndex(_ts.editableTabs, function (tab) {
return tab.name === item;
})
if (result === -1) {
let index = _.findIndex(_ts.menus, function (menu) {
return menu.name === item;
})
_ts.$store.commit('admin/pushTags', _ts.menus[index])
2022-06-21 08:33:33 +08:00
reset = '1'
2022-03-03 11:26:42 +08:00
}
_ts.$router.push({
2022-06-21 08:33:33 +08:00
name: item,
params: {
reset: reset
}
2022-03-03 11:26:42 +08:00
})
},
handleSelectMenu(item) {
let _ts = this;
let activeMenu = _ts.$store.state.activeMenu;
if (activeMenu !== item) {
_ts.$store.commit('setActiveMenu', item);
_ts.handleSelectTab(item)
}
}
}
2022-03-03 11:26:42 +08:00
}
</script>
<style scoped>
</style>