mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
style- Eslint
This commit is contained in:
parent
e242d73c95
commit
aaa4a2f245
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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: () => {},
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user