mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
style(project): eslint fix style
This commit is contained in:
parent
0449e251f6
commit
9b60bb7ed4
@ -1,4 +1,5 @@
|
||||
import type { ProxyOptions } from 'vite'
|
||||
|
||||
/**
|
||||
* @description: 生成vite代理字段
|
||||
* @param {*} env - 环境变量配置
|
||||
|
@ -1,11 +1,12 @@
|
||||
import type { PluginOption } from 'vite'
|
||||
import UnoCSS from '@unocss/vite'
|
||||
import UnoCSS from '@unocss/vite'
|
||||
import vueSetupExtend from 'vite-plugin-vue-setup-extend'
|
||||
import vue from './vue'
|
||||
import compress from './compress'
|
||||
import visualizer from './visualizer'
|
||||
import unplugin from './unplugin'
|
||||
import mock from './mock'
|
||||
|
||||
// import { viteMockServe } from 'vite-plugin-mock' // https://github.com/vbenjs/vite-plugin-mock/blob/main/README.zh_CN.md
|
||||
|
||||
/**
|
||||
@ -14,7 +15,7 @@ import mock from './mock'
|
||||
* @return {*}
|
||||
*/
|
||||
export function setVitePlugins(env: ImportMetaEnv) {
|
||||
const plugins: PluginOption[] = [...vue, UnoCSS(), ...unplugin,mock, vueSetupExtend()]
|
||||
const plugins: PluginOption[] = [...vue, UnoCSS(), ...unplugin, mock, vueSetupExtend()]
|
||||
// 是否压缩
|
||||
if (env.VITE_COMPRESS_OPEN === 'Y')
|
||||
plugins.push(compress(env))
|
||||
|
@ -10,7 +10,7 @@ import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // https://github.c
|
||||
|
||||
export default [
|
||||
AutoImport({
|
||||
imports: ['vue', 'vue-router','pinia'],
|
||||
imports: ['vue', 'vue-router', 'pinia'],
|
||||
include: [
|
||||
/\.[tj]sx?$/,
|
||||
/\.vue$/,
|
||||
|
@ -1,7 +1,10 @@
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx' // https://github.com/vitejs/vite/tree/main/packages/plugin-vue-jsx
|
||||
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||||
|
||||
// https://github.com/vitejs/vite/tree/main/packages/plugin-vue-jsx
|
||||
import VueDevTools from 'vite-plugin-vue-devtools' // https://github.com/webfansplz/vite-plugin-vue-devtools
|
||||
|
||||
const plugins = [vue(), vueJsx(),VueDevTools()]
|
||||
const plugins = [vue(), vueJsx(), VueDevTools()]
|
||||
|
||||
export default plugins
|
||||
|
@ -41,7 +41,7 @@
|
||||
"dev:prod": "vite --mode production",
|
||||
"build": "vue-tsc --noEmit && vite build",
|
||||
"preview": "vite preview",
|
||||
"lint": "eslint . --fix",
|
||||
"lint": "eslint --fix",
|
||||
"prepare": "husky install",
|
||||
"commit": "cz",
|
||||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
|
||||
@ -78,12 +78,12 @@
|
||||
"@types/mockjs": "^1.0.7",
|
||||
"@types/node": "^20.3.1",
|
||||
"@types/qs": "^6.9.7",
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"@vitejs/plugin-vue": "^4.2.3",
|
||||
"@vitejs/plugin-vue-jsx": "^3.0.0",
|
||||
"commitizen": "^4.2.6",
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"cz-customizable": "^7.0.0",
|
||||
"eslint": "^8.36.0",
|
||||
"eslint": "^8.42.0",
|
||||
"husky": "^8.0.3",
|
||||
"less": "^4.1.3",
|
||||
"lint-staged": "^13.1.0",
|
||||
|
@ -2,7 +2,7 @@
|
||||
import type { GlobalThemeOverrides } from 'naive-ui'
|
||||
import { dateZhCN, useOsTheme, zhCN } from 'naive-ui'
|
||||
import { useAppStore } from './store'
|
||||
import themeConfig from './theme.json';
|
||||
import themeConfig from './theme.json'
|
||||
|
||||
const locale = zhCN
|
||||
const dateLocale = dateZhCN
|
||||
@ -14,8 +14,10 @@ const themeOverrides: GlobalThemeOverrides = {} || themeConfig
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<n-config-provider class="wh-full" :theme="appStore.darkTheme" :locale="locale" :date-locale="dateLocale"
|
||||
:theme-overrides="themeOverrides">
|
||||
<n-config-provider
|
||||
class="wh-full" :theme="appStore.darkTheme" :locale="locale" :date-locale="dateLocale"
|
||||
:theme-overrides="themeOverrides"
|
||||
>
|
||||
<naive-provider><router-view /></naive-provider>
|
||||
</n-config-provider>
|
||||
</template>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { useAppStore } from '@/store'
|
||||
|
||||
const appStore = useAppStore()
|
||||
</script>
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { useAppInfo } from '@/hooks'
|
||||
|
||||
const { title } = useAppInfo()
|
||||
</script>
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import vueQr from 'vue-qr/src/packages/vue-qr.vue' // https://www.npmjs.com/package/vue-qr
|
||||
import vueQr from 'vue-qr/src/packages/vue-qr.vue'
|
||||
|
||||
// https://www.npmjs.com/package/vue-qr
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
text?: string
|
||||
|
@ -1,5 +1,6 @@
|
||||
/** 默认实例的Aixos配置 */
|
||||
import type { AxiosRequestConfig } from 'axios'
|
||||
|
||||
export const DEFAULT_AXIOS_OPTIONS: AxiosRequestConfig = {
|
||||
// 请求超时时间,默认15秒
|
||||
timeout: 15 * 1000,
|
||||
|
@ -40,10 +40,10 @@ export function usePermission() {
|
||||
let has = role === 'super'
|
||||
if (!has) {
|
||||
if (isArray(permission))
|
||||
has = (permission as Auth.RoleType[]).includes(role)
|
||||
has = (permission).includes(role)
|
||||
|
||||
if (isString(permission))
|
||||
has = (permission as Auth.RoleType) === role
|
||||
has = (permission) === role
|
||||
}
|
||||
return has
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import HeaderButton from '../common/HeaderButton.vue'
|
||||
import { useAppStore } from '@/store'
|
||||
|
||||
const appStore = useAppStore()
|
||||
</script>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import HeaderButton from '../common/HeaderButton.vue'
|
||||
const toMyGithub = () => {
|
||||
|
||||
function toMyGithub() {
|
||||
window.open('https://github.com/iam-see')
|
||||
}
|
||||
</script>
|
||||
|
@ -1,11 +1,12 @@
|
||||
<script setup lang="ts">
|
||||
import HeaderButton from '../common/HeaderButton.vue'
|
||||
import { useAppStore } from '@/store'
|
||||
|
||||
const appStore = useAppStore()
|
||||
|
||||
const loading = ref(false)
|
||||
|
||||
const handleReload = () => {
|
||||
function handleReload() {
|
||||
loading.value = true
|
||||
appStore.reloadPage()
|
||||
setTimeout(() => {
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import HeaderButton from '../common/HeaderButton.vue'
|
||||
const handleSearch = () => {
|
||||
|
||||
function handleSearch() {
|
||||
window.$message.success('施工中...')
|
||||
}
|
||||
</script>
|
||||
|
@ -1,10 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import HeaderButton from '../common/HeaderButton.vue'
|
||||
import { useAppStore } from '@/store'
|
||||
|
||||
const appStore = useAppStore()
|
||||
|
||||
const drawerActive = ref(false)
|
||||
const openSetting = () => {
|
||||
function openSetting() {
|
||||
drawerActive.value = !drawerActive.value
|
||||
}
|
||||
</script>
|
||||
|
@ -22,7 +22,7 @@ const options = [
|
||||
icon: renderIcon('icon-park-outline:logout'),
|
||||
},
|
||||
]
|
||||
const handleSelect = (key: string | number) => {
|
||||
function handleSelect(key: string | number) {
|
||||
if (key === 'loginOut') {
|
||||
window.$dialog.info({
|
||||
title: '退出登录',
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import { useAppStore } from '@/store'
|
||||
import { useAppInfo, useAppRouter } from '@/hooks'
|
||||
|
||||
const { name } = useAppInfo()
|
||||
const { toRoot } = useAppRouter()
|
||||
const appStore = useAppStore()
|
||||
|
@ -2,7 +2,6 @@ import type { Router } from 'vue-router'
|
||||
import { createPermissionGuard } from './permission'
|
||||
import { useRouteStore, useTabStore } from '@/store'
|
||||
|
||||
|
||||
const title = import.meta.env.VITE_APP_TITLE
|
||||
|
||||
export function setupRouterGuard(router: Router) {
|
||||
@ -18,7 +17,7 @@ export function setupRouterGuard(router: Router) {
|
||||
await createPermissionGuard(to, from, next)
|
||||
})
|
||||
|
||||
router.beforeResolve(async (to) => {
|
||||
router.beforeResolve((to) => {
|
||||
const routeStore = useRouteStore()
|
||||
const tabStore = useTabStore()
|
||||
// 设置菜单高亮
|
||||
|
@ -15,5 +15,5 @@ export function fetchUserInfo(params: any) {
|
||||
return mockRequest.get<Auth.UserInfo>('/getUserInfo', { params })
|
||||
}
|
||||
export function fetchUserRoutes(params: { userId: number }) {
|
||||
return mockRequest.post<any>('/getUserRoutes', params)
|
||||
return mockRequest.post<AppRoute.Route[]>('/getUserRoutes', params)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
import type { MenuOption } from 'naive-ui'
|
||||
import { RouterLink } from 'vue-router'
|
||||
import { h } from 'vue'
|
||||
@ -80,7 +79,7 @@ export const useRouteStore = defineStore('route-store', {
|
||||
createMenus(userRoutes: AppRoute.Route[]) {
|
||||
this.userRoutes = userRoutes
|
||||
|
||||
let resultMenus = JSON.parse(JSON.stringify(userRoutes))
|
||||
let resultMenus: AppRoute.Route[] = JSON.parse(JSON.stringify(userRoutes))
|
||||
resultMenus = this.removeHiddenRoutes(resultMenus)
|
||||
this.menus = this.transformAuthRoutesToMenus(resultMenus)
|
||||
},
|
||||
@ -157,6 +156,9 @@ export const useRouteStore = defineStore('route-store', {
|
||||
const { data: routes } = await fetchUserRoutes({
|
||||
userId: userInfo.userId,
|
||||
})
|
||||
|
||||
if (!routes)
|
||||
return
|
||||
// 根据用户返回的路由表来生成真实路由
|
||||
const appRoutes = await createDynamicRoutes(routes)
|
||||
// 生成侧边菜单
|
||||
|
8
src/typings/global.d.ts
vendored
8
src/typings/global.d.ts
vendored
@ -1,8 +1,8 @@
|
||||
interface Window {
|
||||
$loadingBar?: import('naive-ui').LoadingBarApiInjection;
|
||||
$dialog?: import('naive-ui').DialogApiInjection;
|
||||
$message?: import('naive-ui').MessageApiInjection;
|
||||
$notification?: import('naive-ui').NotificationApiInjection;
|
||||
$loadingBar?: import('naive-ui').LoadingBarApi;
|
||||
$dialog?: import('naive-ui').DialogApi;
|
||||
$message?: import('naive-ui').MessageApi;
|
||||
$notification?: import('naive-ui').NotificationApi;
|
||||
}
|
||||
|
||||
declare const AMap: any;
|
||||
|
2
src/typings/route.d.ts
vendored
2
src/typings/route.d.ts
vendored
@ -33,6 +33,6 @@ declare namespace AppRoute {
|
||||
/* 嵌套外链 */
|
||||
herf?: string;
|
||||
/** 当前路由需要选中的菜单项(用于跳转至不在左侧菜单显示的路由且需要高亮某个菜单的情况) */
|
||||
activeMenu?: RouteKey;
|
||||
activeMenu?: string;
|
||||
}
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ const initialModel = {
|
||||
const model = ref({ ...initialModel })
|
||||
|
||||
const formRef = ref<FormInst | null>()
|
||||
const sendMail = (id: number) => {
|
||||
function sendMail(id: number) {
|
||||
window.$message.success(`用户id:${id}`)
|
||||
}
|
||||
const columns: DataTableColumns = [
|
||||
|
@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import MdEditor from 'md-editor-v3'
|
||||
import 'md-editor-v3/lib/style.css'
|
||||
|
||||
// https://github.com/imzbf/md-editor-v3/blob/dev/README-CN.md
|
||||
|
||||
const text = ref('# Hello Editor')
|
||||
|
@ -29,7 +29,7 @@ onBeforeUnmount(() => {
|
||||
editor.destroy()
|
||||
})
|
||||
|
||||
const handleCreated = (editor: string) => {
|
||||
function handleCreated(editor: string) {
|
||||
editorRef.value = editor // 记录 editor 实例,重要!
|
||||
}
|
||||
</script>
|
||||
|
@ -13,20 +13,20 @@ import {
|
||||
} from '@/service'
|
||||
|
||||
const msg = ref()
|
||||
const pinter = () => {
|
||||
function pinter() {
|
||||
msg.value = import.meta.env
|
||||
}
|
||||
const get = () => {
|
||||
function get() {
|
||||
fetachGet({ a: 112211 }).then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
const delete2 = () => {
|
||||
function delete2() {
|
||||
fetachDelete().then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
const post = () => {
|
||||
function post() {
|
||||
const params = {
|
||||
data: '2022-2-2',
|
||||
data1: [],
|
||||
@ -48,7 +48,7 @@ function formPost() {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
const put = () => {
|
||||
function put() {
|
||||
const params = {
|
||||
data: '2022-2-2',
|
||||
}
|
||||
@ -58,30 +58,30 @@ const put = () => {
|
||||
}
|
||||
|
||||
// 测试请求失败
|
||||
const failedRequest = () => {
|
||||
function failedRequest() {
|
||||
testFailedRequest().then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
// 测试业务失败
|
||||
const failedResponse = () => {
|
||||
function failedResponse() {
|
||||
testFailedResponse().then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
// 测试业务失败无提示
|
||||
const failedResponse_NT = () => {
|
||||
function failedResponse_NT() {
|
||||
testFailedResponse_NT().then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
// 测试刷新token
|
||||
const updataToken = () => {
|
||||
function updataToken() {
|
||||
testUpdataToken().then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
const mock = () => {
|
||||
function mock() {
|
||||
fetchMock().then((res) => {
|
||||
msg.value = res
|
||||
})
|
||||
|
@ -1,5 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { useAppRouter } from '@/hooks'
|
||||
|
||||
const { routerPush } = useAppRouter()
|
||||
</script>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
const testMsg = () => {
|
||||
function testMsg() {
|
||||
window.$message.error('Once upon a time you dressed so fine')
|
||||
}
|
||||
</script>
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { presetUno,presetAttributify,defineConfig } from 'unocss' // https://github.com/unocss/unocss
|
||||
import { defineConfig, presetAttributify, presetUno } from 'unocss' // https://github.com/unocss/unocss
|
||||
|
||||
export default defineConfig({
|
||||
presets: [presetUno({ dark: 'class' }), presetAttributify()],
|
||||
|
Loading…
x
Reference in New Issue
Block a user