style- Eslint

This commit is contained in:
Huang 2022-07-22 11:27:27 +08:00
parent e242d73c95
commit aaa4a2f245
6 changed files with 13 additions and 14 deletions

View File

@ -9,7 +9,7 @@
</script>
<template>
<view class="default-btn" @tap="click"><slot /></view>
<view class="default-btn" @tap="click"><slot></slot></view>
</template>
<style lang="scss" scoped>

View File

@ -25,7 +25,7 @@
<view class="container">
<view class="head-wrap">
<view class="avatar">
<image class="img" src="/static/images/avatar.png"></image>
<image class="img" src="/static/images/avatar.png" />
</view>
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
</view>

View File

@ -95,6 +95,6 @@ export const isClient = !isServer;
export function isUrl(path: string): boolean {
// @ts-ignore
const reg =
/(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/;
/^((https|http|ftp|rtsp|mms):\/\/)(([0-9a-zA-Z_!~*'().&=+$%-]+: )?[0-9a-zA-Z_!~*'().&=+$%-]+@)?(([0-9]{1,3}.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(:[0-9]{1,4})?((\/?)|(\/[0-9a-zA-Z_!~*'().;?:@&=+$,%#-]+)+\/?)$/;
return reg.test(path);
}

View File

@ -1,7 +1,6 @@
import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum';
import { AUTH_PAGE, router } from '@/utils/router/index';
import { useAuthStore } from '@/state/modules/auth';
import { Toast } from '@/utils/uniApi';
/**
*
@ -19,7 +18,7 @@ export function isIncludesAuthRouter(path: string): boolean {
*/
export function jumpLogin(path: string) {
const _path = path.startsWith('/') ? path : `/${path}`;
let pathQuery = encodeURIComponent(_path);
const pathQuery = encodeURIComponent(_path);
router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
}
@ -44,7 +43,7 @@ function addInterceptor(routerName: string) {
return args;
},
// 成功回调拦截
success: (res: any) => {},
success: () => {},
// 失败回调拦截
fail: (err: any) => {
let reg: RegExp;
@ -63,7 +62,7 @@ function addInterceptor(routerName: string) {
return false;
},
// 完成回调拦截
complete: (res: any) => {},
complete: () => {},
});
}

View File

@ -57,7 +57,7 @@ export class Navigates {
const authStore = useAuthStore();
if (!authStore.isLogin) {
const _path = url.startsWith('/') ? url : `/${url}`;
let pathQuery = encodeURIComponent(_path);
const pathQuery = encodeURIComponent(_path);
this.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
}
return;

View File

@ -1,6 +1,6 @@
import { ConfigEnv, UserConfig } from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
// import eslintPlugin from 'vite-plugin-eslint';
import eslintPlugin from 'vite-plugin-eslint';
import { resolve } from 'path';
import { loadEnv } from 'vite';
@ -41,11 +41,11 @@ export default ({ mode }: ConfigEnv): UserConfig => {
},
plugins: [
uni(),
// eslintPlugin({
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
// exclude: ['./node_modules/**'],
// cache: false,
// }),
eslintPlugin({
include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
exclude: ['./node_modules/**'],
cache: false,
}),
],
css: {
preprocessorOptions: {