💩 tabs 页
This commit is contained in:
parent
553380f5bb
commit
f93d148545
221
pages/admin.vue
221
pages/admin.vue
@ -6,46 +6,26 @@
|
|||||||
:default-active="getActiveMenu"
|
:default-active="getActiveMenu"
|
||||||
class="el-menu-vertical-demo"
|
class="el-menu-vertical-demo"
|
||||||
@select="handleSelectMenu">
|
@select="handleSelectMenu">
|
||||||
<el-menu-item index="admin-dashboard">
|
<template v-for="menu in menus">
|
||||||
<i class="el-icon-s-data"></i>
|
<el-menu-item :key="menu.name" :index="menu.name">
|
||||||
<span slot="title">Dashboard</span>
|
<i :class="menu.icon"></i>
|
||||||
</el-menu-item>
|
<span slot="title">{{ menu.title }}</span>
|
||||||
<el-menu-item index="admin-articles">
|
</el-menu-item>
|
||||||
<i class="el-icon-s-custom"></i>
|
</template>
|
||||||
<span slot="title">文章管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-comments">
|
|
||||||
<i class="el-icon-s-custom"></i>
|
|
||||||
<span slot="title">评论管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-users">
|
|
||||||
<i class="el-icon-s-custom"></i>
|
|
||||||
<span slot="title">用户管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-roles">
|
|
||||||
<i class="el-icon-s-check"></i>
|
|
||||||
<span slot="title">角色管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-topics">
|
|
||||||
<i class="el-icon-postcard"></i>
|
|
||||||
<span slot="title">专题管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-tags">
|
|
||||||
<i class="el-icon-price-tag"></i>
|
|
||||||
<span slot="title">标签管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-banks">
|
|
||||||
<i class="el-icon-office-building"></i>
|
|
||||||
<span slot="title">银行管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
<el-menu-item index="admin-bank-accounts">
|
|
||||||
<i class="el-icon-bank-card"></i>
|
|
||||||
<span slot="title">银行卡管理</span>
|
|
||||||
</el-menu-item>
|
|
||||||
</el-menu>
|
</el-menu>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="20">
|
<el-col :span="20">
|
||||||
<nuxt :nuxt-child-key="$route.name" />
|
<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>
|
</el-col>
|
||||||
<el-col v-else class="text-center">
|
<el-col v-else class="text-center">
|
||||||
@ -61,31 +41,162 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
import _ from 'lodash'
|
||||||
name: "Admin",
|
|
||||||
computed: {
|
export default {
|
||||||
getActiveMenu () {
|
name: "Admin",
|
||||||
return this.$store.state.activeMenu;
|
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-s-custom',
|
||||||
|
closable: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '评论管理',
|
||||||
|
name: 'admin-comments',
|
||||||
|
path: '/admin/comments',
|
||||||
|
icon: 'el-icon-s-custom',
|
||||||
|
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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
editableTabs() {
|
||||||
|
return this.$store.state.admin.tabs;
|
||||||
|
},
|
||||||
|
editableTabsValue: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.admin.activeTab;
|
||||||
},
|
},
|
||||||
hasPermissions () {
|
set(value) {
|
||||||
return this.$store.getters.hasPermissions('blog_admin');
|
this.$store.commit('admin/updateActiveTab', value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
getActiveMenu() {
|
||||||
handleSelectMenu(item) {
|
return this.$store.state.activeMenu;
|
||||||
let _ts = this;
|
},
|
||||||
let activeMenu = _ts.$store.state.activeMenu;
|
hasPermissions() {
|
||||||
if (activeMenu !== item) {
|
return this.$store.getters.hasPermissions('blog_admin');
|
||||||
_ts.$store.commit('setActiveMenu', item);
|
}
|
||||||
_ts.$router.push(
|
},
|
||||||
{
|
methods: {
|
||||||
name: item
|
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;
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
}
|
});
|
||||||
|
}
|
||||||
|
this.$store.commit('admin/updateActiveTab', activeName);
|
||||||
|
|
||||||
|
this.$store.commit('admin/updateTags', tabs.filter(tab => tab.name !== targetName))
|
||||||
|
|
||||||
|
this.$router.push({
|
||||||
|
name: activeName
|
||||||
|
})
|
||||||
|
},
|
||||||
|
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({
|
||||||
|
name: item.name
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleSelectTab(item) {
|
||||||
|
let _ts = this
|
||||||
|
this.$store.commit('admin/updateActiveTab', item);
|
||||||
|
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])
|
||||||
|
}
|
||||||
|
_ts.$router.push({
|
||||||
|
name: item
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleSelectMenu(item) {
|
||||||
|
let _ts = this;
|
||||||
|
let activeMenu = _ts.$store.state.activeMenu;
|
||||||
|
if (activeMenu !== item) {
|
||||||
|
_ts.$store.commit('setActiveMenu', item);
|
||||||
|
_ts.handleSelectTab(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
@ -34,7 +34,17 @@ export const state = () => {
|
|||||||
user: getDefaultUsersData(),
|
user: getDefaultUsersData(),
|
||||||
role: getDefaultRolesData(),
|
role: getDefaultRolesData(),
|
||||||
article: getDefaultArticlesData(),
|
article: getDefaultArticlesData(),
|
||||||
comment: getDefaultCommentsData()
|
comment: getDefaultCommentsData(),
|
||||||
|
tabs: [
|
||||||
|
{
|
||||||
|
title: 'Dashboard',
|
||||||
|
name: 'admin-dashboard',
|
||||||
|
path: '/admin/dashboard',
|
||||||
|
icon: 'el-icon-s-data',
|
||||||
|
closable: false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
activeTab: 'admin-dashboard'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,6 +73,16 @@ export const mutations = {
|
|||||||
if (article.idArticle === action.idArticle) {
|
if (article.idArticle === action.idArticle) {
|
||||||
article.articlePerfect = action.articlePerfect
|
article.articlePerfect = action.articlePerfect
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
updateTags(state, action) {
|
||||||
|
state.tabs = action
|
||||||
|
},
|
||||||
|
pushTags(state, action) {
|
||||||
|
let tabs = state.tabs
|
||||||
|
tabs.push(action)
|
||||||
|
},
|
||||||
|
updateActiveTab(state, action) {
|
||||||
|
state.activeTab = action
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user