1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2026-01-22 23:50:22 +08:00

style: lint

This commit is contained in:
zclzone
2024-06-06 18:05:36 +08:00
parent 98f9d5893a
commit a67510fe34
72 changed files with 542 additions and 389 deletions

View File

@@ -22,7 +22,8 @@ export async function getPermissions() {
try {
const res = await api.getRolePermissions()
asyncPermissions = res?.data || []
} catch (error) {
}
catch (error) {
console.error(error)
}
return basePermissions.concat(asyncPermissions)

View File

@@ -7,7 +7,7 @@
**********************************/
import { defineStore } from 'pinia'
import { useUserStore, usePermissionStore, useTabStore, useRouterStore } from '@/store'
import { usePermissionStore, useRouterStore, useTabStore, useUserStore } from '@/store'
export const useAuthStore = defineStore('auth', {
state: () => ({

View File

@@ -6,9 +6,9 @@
* Copyright © 2023 Ronnie Zhang(大脸怪) | https://isme.top
**********************************/
import { isExternal } from '@/utils'
import { hyphenate } from '@vueuse/core'
import { defineStore } from 'pinia'
import { isExternal } from '@/utils'
export const usePermissionStore = defineStore('permission', {
state: () => ({
@@ -20,15 +20,17 @@ export const usePermissionStore = defineStore('permission', {
setPermissions(permissions) {
this.permissions = permissions
this.menus = this.permissions
.filter((item) => item.type === 'MENU')
.map((item) => this.getMenuItem(item))
.filter((item) => !!item)
.filter(item => item.type === 'MENU')
.map(item => this.getMenuItem(item))
.filter(item => !!item)
.sort((a, b) => a.order - b.order)
},
getMenuItem(item, parent) {
const route = this.generateRoute(item, item.show ? null : parent?.key)
if (item.enable && route.path && !route.path.startsWith('http')) this.accessRoutes.push(route)
if (!item.show) return null
if (item.enable && route.path && !route.path.startsWith('http'))
this.accessRoutes.push(route)
if (!item.show)
return null
const menuItem = {
label: route.meta.title,
key: route.name,
@@ -37,18 +39,19 @@ export const usePermissionStore = defineStore('permission', {
icon: () => h('i', { class: `${route.meta.icon} text-16` }),
order: item.order ?? 0,
}
const children = item.children?.filter((item) => item.type === 'MENU') || []
const children = item.children?.filter(item => item.type === 'MENU') || []
if (children.length) {
menuItem.children = children
.map((child) => this.getMenuItem(child, menuItem))
.filter((item) => !!item)
.map(child => this.getMenuItem(child, menuItem))
.filter(item => !!item)
.sort((a, b) => a.order - b.order)
if (!menuItem.children.length) delete menuItem.children
if (!menuItem.children.length)
delete menuItem.children
}
return menuItem
},
generateRoute(item, parentKey) {
let originPath = undefined
let originPath
if (isExternal(item.path)) {
originPath = item.path
item.component = '/src/views/iframe/index.vue'
@@ -61,14 +64,14 @@ export const usePermissionStore = defineStore('permission', {
component: item.component,
meta: {
originPath,
icon: item.icon + '?mask',
icon: `${item.icon}?mask`,
title: item.name,
layout: item.layout,
keepAlive: !!item.keepAlive,
parentKey,
btns: item.children
?.filter((item) => item.type === 'BUTTON')
.map((item) => ({ code: item.code, name: item.name })),
?.filter(item => item.type === 'BUTTON')
.map(item => ({ code: item.code, name: item.name })),
},
}
},

View File

@@ -17,7 +17,7 @@ export const useTabStore = defineStore('tab', {
}),
getters: {
activeIndex() {
return this.tabs.findIndex((item) => item.path === this.activeTab)
return this.tabs.findIndex(item => item.path === this.activeTab)
},
},
actions: {
@@ -29,19 +29,22 @@ export const useTabStore = defineStore('tab', {
this.tabs = tabs
},
addTab(tab = {}) {
const findIndex = this.tabs.findIndex((item) => item.path === tab.path)
const findIndex = this.tabs.findIndex(item => item.path === tab.path)
if (findIndex !== -1) {
this.tabs.splice(findIndex, 1, tab)
} else {
}
else {
this.setTabs([...this.tabs, tab])
}
this.setActiveTab(tab.path)
},
async reloadTab(path, keepAlive) {
const findItem = this.tabs.find((item) => item.path === path)
if (!findItem) return
const findItem = this.tabs.find(item => item.path === path)
if (!findItem)
return
// 更新key可让keepAlive失效
if (keepAlive) findItem.keepAlive = false
if (keepAlive)
findItem.keepAlive = false
$loadingBar.start()
this.reloading = true
await nextTick()
@@ -53,30 +56,30 @@ export const useTabStore = defineStore('tab', {
}, 100)
},
async removeTab(path) {
this.setTabs(this.tabs.filter((tab) => tab.path !== path))
this.setTabs(this.tabs.filter(tab => tab.path !== path))
if (path === this.activeTab) {
useRouterStore().router?.push(this.tabs[this.tabs.length - 1].path)
}
},
removeOther(curPath = this.activeTab) {
this.setTabs(this.tabs.filter((tab) => tab.path === curPath))
this.setTabs(this.tabs.filter(tab => tab.path === curPath))
if (curPath !== this.activeTab) {
useRouterStore().router?.push(this.tabs[this.tabs.length - 1].path)
}
},
removeLeft(curPath) {
const curIndex = this.tabs.findIndex((item) => item.path === curPath)
const curIndex = this.tabs.findIndex(item => item.path === curPath)
const filterTabs = this.tabs.filter((item, index) => index >= curIndex)
this.setTabs(filterTabs)
if (!filterTabs.find((item) => item.path === this.activeTab)) {
if (!filterTabs.find(item => item.path === this.activeTab)) {
useRouterStore().router?.push(filterTabs[filterTabs.length - 1].path)
}
},
removeRight(curPath) {
const curIndex = this.tabs.findIndex((item) => item.path === curPath)
const curIndex = this.tabs.findIndex(item => item.path === curPath)
const filterTabs = this.tabs.filter((item, index) => index <= curIndex)
this.setTabs(filterTabs)
if (!filterTabs.find((item) => item.path === this.activeTab.value)) {
if (!filterTabs.find(item => item.path === this.activeTab.value)) {
useRouterStore().router?.push(filterTabs[filterTabs.length - 1].path)
}
},