fix(lint): resolve eslint error

This commit is contained in:
Coffee-crocodile 2023-06-21 12:04:28 +08:00
parent 828466d08c
commit 6bc16a28f9
16 changed files with 59 additions and 58 deletions

View File

@ -3,4 +3,12 @@ process.env.ESLINT_TSCONFIG = 'tsconfig.json'
module.exports = { module.exports = {
extends: '@chansee97/eslint-config-vue', extends: '@chansee97/eslint-config-vue',
rules: {
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
},
} }

View File

@ -10,7 +10,7 @@ import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // https://github.c
export default [ export default [
AutoImport({ AutoImport({
imports: ['vue', 'vue-router', 'pinia'], imports: ['vue', 'vue-router', 'pinia', '@vueuse/core'],
include: [ include: [
/\.[tj]sx?$/, /\.[tj]sx?$/,
/\.vue$/, /\.vue$/,

View File

@ -41,7 +41,7 @@
"dev:prod": "vite --mode production", "dev:prod": "vite --mode production",
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",
"preview": "vite preview", "preview": "vite preview",
"lint": "eslint --fix", "lint": "eslint . --fix",
"prepare": "husky install", "prepare": "husky install",
"commit": "cz", "commit": "cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md" "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"

View File

@ -11,13 +11,13 @@ export function useAppRouter(isSetup = true) {
const route = router.currentRoute const route = router.currentRoute
/* 路由跳转方法 */ /* 路由跳转方法 */
function routerPush(to: RouteLocationRaw) { async function routerPush(to: RouteLocationRaw) {
router.push(to) await router.push(to)
} }
/* 路由跳转方法 */ /* 路由跳转方法 */
function routerReplace(to: RouteLocationRaw) { async function routerReplace(to: RouteLocationRaw) {
router.replace(to) await router.replace(to)
} }
/* 前进后退方法 */ /* 前进后退方法 */
@ -26,25 +26,25 @@ export function useAppRouter(isSetup = true) {
} }
/* 跳转根页方法 */ /* 跳转根页方法 */
function toRoot() { async function toRoot() {
routerPush({ path: '/appRoot' }) await routerPush({ path: '/appRoot' })
} }
/* 跳转至登录页 */ /* 跳转至登录页 */
function toLogin(redirectUrl?: string) { async function toLogin(redirectUrl?: string) {
const redirect = redirectUrl || route.value.fullPath const redirect = redirectUrl || route.value.fullPath
const targetUrl = { const targetUrl = {
name: 'login', name: 'login',
query: { redirect }, query: { redirect },
} }
routerPush(targetUrl) await routerPush(targetUrl)
} }
/* 跳转重定向方法 */ /* 跳转重定向方法 */
function toLoginRedirect() { async function toLoginRedirect() {
const { query } = route.value const { query } = route.value
if (query?.redirect) if (query?.redirect)
routerPush(query.redirect as string) await routerPush(query.redirect as string)
else else
toRoot() await toRoot()
} }
return { return {

View File

@ -2,7 +2,7 @@ export function useClipBoard() {
function isSupport() { function isSupport() {
return !navigator.clipboard return !navigator.clipboard
} }
async function copy(text: string) { function copy(text: string) {
if (isSupport()) if (isSupport())
return window.$message?.error('当前浏览器不支持复制!') return window.$message?.error('当前浏览器不支持复制!')

View File

@ -30,7 +30,6 @@ import {
import { LabelLayout, UniversalTransition } from 'echarts/features' import { LabelLayout, UniversalTransition } from 'echarts/features'
import { CanvasRenderer } from 'echarts/renderers' import { CanvasRenderer } from 'echarts/renderers'
import { useElementSize } from '@vueuse/core'
import { useAppStore } from '@/store' import { useAppStore } from '@/store'
// 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型 // 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型
@ -109,7 +108,7 @@ export function useEcharts(options: Ref<ECOption>) {
chart?.dispose() chart?.dispose()
chart = null chart = null
} }
const sizeWatch = watch([width, height], ([newWidth, newHeight]) => { const sizeWatch = watch([width, height], async ([newWidth, newHeight]) => {
initialSize.width = newWidth initialSize.width = newWidth
initialSize.height = newHeight initialSize.height = newHeight
if (newWidth === 0 && newHeight === 0) { if (newWidth === 0 && newHeight === 0) {
@ -120,7 +119,7 @@ export function useEcharts(options: Ref<ECOption>) {
return return
if (isRendered()) if (isRendered())
resize() resize()
else render() else await render()
}) })
const OptionWatch = watch(options, (newValue) => { const OptionWatch = watch(options, (newValue) => {

View File

@ -49,7 +49,7 @@ function createCatheRoutes(routes: AppRoute.Route[]) {
}) })
.map(item => item.name) .map(item => item.name)
} }
export async function createDynamicRoutes(routes: AppRoute.Route[]) { export function createDynamicRoutes(routes: AppRoute.Route[]) {
/* 复制一层 */ /* 复制一层 */
let resultRouter = JSON.parse(JSON.stringify(routes)) let resultRouter = JSON.parse(JSON.stringify(routes))
/* 设置路由重定向到子级第一个 */ /* 设置路由重定向到子级第一个 */

View File

@ -102,7 +102,7 @@ export function handleBusinessError(data: Record<string, any>, config: Service.B
* @param {Service} error * @param {Service} error
* @return {*} result * @return {*} result
*/ */
export async function handleServiceResult<T = any>(data: any, error: Service.RequestError | null) { export function handleServiceResult<T = any>(data: any, error: Service.RequestError | null) {
if (error) { if (error) {
const fail: Service.FailedResult = { const fail: Service.FailedResult = {
error, error,
@ -123,7 +123,7 @@ export async function handleServiceResult<T = any>(data: any, error: Service.Req
* @return {*} * @return {*}
*/ */
export async function handleRefreshToken(config: AxiosRequestConfig) { export async function handleRefreshToken(config: AxiosRequestConfig) {
const { resetAuthStore } = useAuthStore() const authStore = useAuthStore()
const refreshToken = local.get('refreshToken') const refreshToken = local.get('refreshToken')
const { data } = await fetchUpdateToken(refreshToken) const { data } = await fetchUpdateToken(refreshToken)
if (data) { if (data) {
@ -136,6 +136,6 @@ export async function handleRefreshToken(config: AxiosRequestConfig) {
return config return config
} }
resetAuthStore() await authStore.resetAuthStore()
return null return null
} }

View File

@ -16,7 +16,7 @@ export function showError(error: Service.RequestError) {
* @param requestData - * @param requestData -
* @param contentType - Content-Type * @param contentType - Content-Type
*/ */
export async function transformRequestData( export function transformRequestData(
requestData: any, requestData: any,
contentType?: UnionKey.ContentType, contentType?: UnionKey.ContentType,
) { ) {
@ -29,16 +29,16 @@ export async function transformRequestData(
// form-data类型转换 // form-data类型转换
if (contentType === 'multipart/form-data') if (contentType === 'multipart/form-data')
data = await handleFormData(data) data = handleFormData(data)
return data return data
} }
async function handleFormData(data: Record<string, any>) { function handleFormData(data: Record<string, any>) {
const formData = new FormData() const formData = new FormData()
const entries = Object.entries(data) const entries = Object.entries(data)
entries.forEach(async ([key, value]) => { entries.forEach(([key, value]) => {
const isFileType const isFileType
= isFile(value) || (isArray(value) && value.length && isFile(value[0])) = isFile(value) || (isArray(value) && value.length && isFile(value[0]))

View File

@ -21,12 +21,14 @@ interface AppStatus {
const docEle = document.documentElement const docEle = document.documentElement
const { isFullscreen, toggle } = useFullscreen(docEle)
export const useAppStore = defineStore('app-store', { export const useAppStore = defineStore('app-store', {
state: (): AppStatus => { state: (): AppStatus => {
return { return {
footerText: 'Copyright ©2023 Ench Admin', footerText: 'Copyright ©2023 Ench Admin',
collapsed: false, collapsed: false,
fullScreen: false, fullScreen: isFullscreen.value,
darkMode: false, darkMode: false,
grayMode: false, grayMode: false,
colorWeak: false, colorWeak: false,
@ -47,15 +49,9 @@ export const useAppStore = defineStore('app-store', {
this.collapsed = !this.collapsed this.collapsed = !this.collapsed
}, },
/* 切换全屏 */ /* 切换全屏 */
toggleFullScreen() { async toggleFullScreen() {
if (!document.fullscreenElement) { this.fullScreen = isFullscreen.value
this.fullScreen = true await toggle()
document.documentElement.requestFullscreen()
}
else if (document.exitFullscreen) {
this.fullScreen = false
document.exitFullscreen()
}
}, },
/* 切换主题 亮/深色 */ /* 切换主题 亮/深色 */
toggleDarkMode() { toggleDarkMode() {

View File

@ -4,6 +4,7 @@ import { router } from '@/router'
import { useAppRouter } from '@/hooks' import { useAppRouter } from '@/hooks'
import { local } from '@/utils' import { local } from '@/utils'
const routeStore = useRouteStore()
const emptyInfo: Auth.UserInfo = { const emptyInfo: Auth.UserInfo = {
userId: 0, userId: 0,
userName: '', userName: '',
@ -28,17 +29,16 @@ export const useAuthStore = defineStore('auth-store', {
}, },
actions: { actions: {
/* 登录退出,重置用户信息等 */ /* 登录退出,重置用户信息等 */
resetAuthStore() { async resetAuthStore() {
const route = unref(router.currentRoute) const route = unref(router.currentRoute)
const { toLogin } = useAppRouter(false) const { toLogin } = useAppRouter(false)
const { resetRouteStore } = useRouteStore()
// 清除本地缓存 // 清除本地缓存
this.clearAuthStorage() this.clearAuthStorage()
// 清空路由、菜单等数据 // 清空路由、菜单等数据
resetRouteStore() routeStore.resetRouteStore()
this.$reset() this.$reset()
if (route.meta.requiresAuth) if (route.meta.requiresAuth)
toLogin() await toLogin()
}, },
clearAuthStorage() { clearAuthStorage() {
local.remove('token') local.remove('token')
@ -66,14 +66,14 @@ export const useAuthStore = defineStore('auth-store', {
const catchSuccess = await this.catchUserInfo(data) const catchSuccess = await this.catchUserInfo(data)
// 添加路由和菜单 // 添加路由和菜单
const { initAuthRoute } = useRouteStore() // const { initAuthRoute } = useRouteStore()
await initAuthRoute() await routeStore.initAuthRoute()
// 登录写入信息成功 // 登录写入信息成功
if (catchSuccess) { if (catchSuccess) {
// 进行重定向跳转 // 进行重定向跳转
const { toLoginRedirect } = useAppRouter(false) const { toLoginRedirect } = useAppRouter(false)
toLoginRedirect() await toLoginRedirect()
// 触发用户提示 // 触发用户提示
window.$notification?.success({ window.$notification?.success({
@ -84,7 +84,7 @@ export const useAuthStore = defineStore('auth-store', {
return return
} }
// 如果不成功则重置存储 // 如果不成功则重置存储
this.resetAuthStore() await this.resetAuthStore()
}, },
/* 缓存用户信息 */ /* 缓存用户信息 */
@ -107,8 +107,8 @@ export const useAuthStore = defineStore('auth-store', {
return catchSuccess return catchSuccess
}, },
toggleUserRole(role: Auth.RoleType) { async toggleUserRole(role: Auth.RoleType) {
this.login(role, '123456') await this.login(role, '123456')
}, },
}, },
}) })

View File

@ -160,16 +160,16 @@ export const useRouteStore = defineStore('route-store', {
if (!routes) if (!routes)
return return
// 根据用户返回的路由表来生成真实路由 // 根据用户返回的路由表来生成真实路由
const appRoutes = await createDynamicRoutes(routes) const appRoutes = createDynamicRoutes(routes)
// 生成侧边菜单 // 生成侧边菜单
this.createMenus(routes) this.createMenus(routes)
// 插入路由表 // 插入路由表
router.addRoute(appRoutes) router.addRoute(appRoutes)
}, },
/* 初始化静态路由 */ /* 初始化静态路由 */
async initStaticRoute() { initStaticRoute() {
// 根据静态路由表来生成真实路由 // 根据静态路由表来生成真实路由
const appRoutes = await createDynamicRoutes(staticRoutes) const appRoutes = createDynamicRoutes(staticRoutes)
// 生成侧边菜单 // 生成侧边菜单
this.createMenus(staticRoutes) this.createMenus(staticRoutes)
// 插入路由表 // 插入路由表
@ -180,7 +180,7 @@ export const useRouteStore = defineStore('route-store', {
this.isInitAuthRoute = false this.isInitAuthRoute = false
if (this.authRouteMode === 'dynamic') if (this.authRouteMode === 'dynamic')
await this.initDynamicRoute() await this.initDynamicRoute()
else await this.initStaticRoute() else this.initStaticRoute()
this.isInitAuthRoute = true this.isInitAuthRoute = true
}, },

View File

@ -49,7 +49,7 @@ export const useTabStore = defineStore('tab-store', {
this.tabs.push(route) this.tabs.push(route)
}, },
closeTab(name: string) { async closeTab(name: string) {
const { routerPush, toRoot } = useAppRouter(false) const { routerPush, toRoot } = useAppRouter(false)
const tabsLength = this.tabs.length const tabsLength = this.tabs.length
// 如果动态标签大于一个,才会标签跳转 // 如果动态标签大于一个,才会标签跳转
@ -60,11 +60,11 @@ export const useTabStore = defineStore('tab-store', {
// 如果是关闭的当前页面,路由跳转到原先标签的后一个标签 // 如果是关闭的当前页面,路由跳转到原先标签的后一个标签
if (this.currentTab === name && !isLast) { if (this.currentTab === name && !isLast) {
// 跳转到后一个标签 // 跳转到后一个标签
routerPush(this.tabs[index + 1].path) await routerPush(this.tabs[index + 1].path)
} }
else if (this.currentTab === name && isLast) { else if (this.currentTab === name && isLast) {
// 已经是最后一个了,就跳转前一个 // 已经是最后一个了,就跳转前一个
routerPush(this.tabs[index - 1].path) await routerPush(this.tabs[index - 1].path)
} }
} }
// 删除标签 // 删除标签
@ -73,7 +73,7 @@ export const useTabStore = defineStore('tab-store', {
}) })
// 删除后如果清空了,就跳转到默认首页 // 删除后如果清空了,就跳转到默认首页
if (tabsLength - 1 === 0) if (tabsLength - 1 === 0)
toRoot() await toRoot()
}, },
closeOtherTabs(name: string) { closeOtherTabs(name: string) {
@ -88,10 +88,10 @@ export const useTabStore = defineStore('tab-store', {
const index = this.getTabIndex(name) const index = this.getTabIndex(name)
this.tabs = this.tabs.filter((item, i) => i <= index) this.tabs = this.tabs.filter((item, i) => i <= index)
}, },
closeAllTabs() { async closeAllTabs() {
const { toRoot } = useAppRouter(false) const { toRoot } = useAppRouter(false)
this.tabs.length = 0 this.tabs.length = 0
toRoot() await toRoot()
}, },
hasExistTab(name: string) { hasExistTab(name: string) {

View File

@ -1,4 +1,4 @@
const toString = Object.prototype.toString const toString = Object.prototype.toString.bind({})
export function is(val: unknown, type: string) { export function is(val: unknown, type: string) {
return toString.call(val) === `[object ${type}]` return toString.call(val) === `[object ${type}]`

View File

@ -1,5 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { useScriptTag } from '@vueuse/core'
import { GAODE_MAP_SDK_URL } from '@/config' import { GAODE_MAP_SDK_URL } from '@/config'
const { load } = useScriptTag(GAODE_MAP_SDK_URL) const { load } = useScriptTag(GAODE_MAP_SDK_URL)

View File

@ -1,5 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { useScriptTag } from '@vueuse/core'
import { BAIDU_MAP_SDK_URL } from '@/config' import { BAIDU_MAP_SDK_URL } from '@/config'
const { load } = useScriptTag(BAIDU_MAP_SDK_URL) const { load } = useScriptTag(BAIDU_MAP_SDK_URL)