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>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<view class="default-btn" @tap="click"><slot /></view>
|
<view class="default-btn" @tap="click"><slot></slot></view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
<view class="container">
|
<view class="container">
|
||||||
<view class="head-wrap">
|
<view class="head-wrap">
|
||||||
<view class="avatar">
|
<view class="avatar">
|
||||||
<image class="img" src="/static/images/avatar.png"></image>
|
<image class="img" src="/static/images/avatar.png" />
|
||||||
</view>
|
</view>
|
||||||
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
|
<view class="desc">{{ isLogin ? '测试' : '未登入' }}</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -95,6 +95,6 @@ export const isClient = !isServer;
|
|||||||
export function isUrl(path: string): boolean {
|
export function isUrl(path: string): boolean {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const reg =
|
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);
|
return reg.test(path);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum';
|
import { HOME_PAGE, LOGIN_PAGE, NAVIGATE_TYPE_LIST, NOT_FOUND_PAGE } from '@/enums/routerEnum';
|
||||||
import { AUTH_PAGE, router } from '@/utils/router/index';
|
import { AUTH_PAGE, router } from '@/utils/router/index';
|
||||||
import { useAuthStore } from '@/state/modules/auth';
|
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) {
|
export function jumpLogin(path: string) {
|
||||||
const _path = path.startsWith('/') ? path : `/${path}`;
|
const _path = path.startsWith('/') ? path : `/${path}`;
|
||||||
let pathQuery = encodeURIComponent(_path);
|
const pathQuery = encodeURIComponent(_path);
|
||||||
router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
|
router.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,7 +43,7 @@ function addInterceptor(routerName: string) {
|
|||||||
return args;
|
return args;
|
||||||
},
|
},
|
||||||
// 成功回调拦截
|
// 成功回调拦截
|
||||||
success: (res: any) => {},
|
success: () => {},
|
||||||
// 失败回调拦截
|
// 失败回调拦截
|
||||||
fail: (err: any) => {
|
fail: (err: any) => {
|
||||||
let reg: RegExp;
|
let reg: RegExp;
|
||||||
@ -63,7 +62,7 @@ function addInterceptor(routerName: string) {
|
|||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
// 完成回调拦截
|
// 完成回调拦截
|
||||||
complete: (res: any) => {},
|
complete: () => {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ export class Navigates {
|
|||||||
const authStore = useAuthStore();
|
const authStore = useAuthStore();
|
||||||
if (!authStore.isLogin) {
|
if (!authStore.isLogin) {
|
||||||
const _path = url.startsWith('/') ? url : `/${url}`;
|
const _path = url.startsWith('/') ? url : `/${url}`;
|
||||||
let pathQuery = encodeURIComponent(_path);
|
const pathQuery = encodeURIComponent(_path);
|
||||||
this.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
|
this.push(`${LOGIN_PAGE}?redirect=${pathQuery}`);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { ConfigEnv, UserConfig } from 'vite';
|
import { ConfigEnv, UserConfig } from 'vite';
|
||||||
import uni from '@dcloudio/vite-plugin-uni';
|
import uni from '@dcloudio/vite-plugin-uni';
|
||||||
// import eslintPlugin from 'vite-plugin-eslint';
|
import eslintPlugin from 'vite-plugin-eslint';
|
||||||
import { resolve } from 'path';
|
import { resolve } from 'path';
|
||||||
import { loadEnv } from 'vite';
|
import { loadEnv } from 'vite';
|
||||||
|
|
||||||
@ -41,11 +41,11 @@ export default ({ mode }: ConfigEnv): UserConfig => {
|
|||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
uni(),
|
uni(),
|
||||||
// eslintPlugin({
|
eslintPlugin({
|
||||||
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
|
include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
|
||||||
// exclude: ['./node_modules/**'],
|
exclude: ['./node_modules/**'],
|
||||||
// cache: false,
|
cache: false,
|
||||||
// }),
|
}),
|
||||||
],
|
],
|
||||||
css: {
|
css: {
|
||||||
preprocessorOptions: {
|
preprocessorOptions: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user