style: 组件命名规范

This commit is contained in:
wang_fan_w 2024-04-25 23:25:28 +08:00
parent 430ce6acb0
commit b128655b56
20 changed files with 146 additions and 148 deletions

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 939 B

After

Width:  |  Height:  |  Size: 939 B

View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 796 B

After

Width:  |  Height:  |  Size: 796 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

8
src/components.d.ts vendored
View File

@ -7,12 +7,10 @@ export {}
declare module 'vue' {
export interface GlobalComponents {
MainTransition: typeof import('./components/MainTransition/index.vue')['default']
MyTransition: typeof import('./components/MyTransition/index.vue')['default']
MainTransition: typeof import('./components/main-transition/index.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
SvgIcon: typeof import('./components/SvgIcon/index.vue')['default']
Transition: typeof import('./components/Transition/index.vue')['default']
VerifyCode: typeof import('./components/VerifyCode/index.vue')['default']
SvgIcon: typeof import('./components/svg-icon/index.vue')['default']
VerifyCode: typeof import('./components/verify-code/index.vue')['default']
}
}

View File

@ -1,140 +1,140 @@
<template>
<span class="s-canvas" @click="changeCode">
<canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas>
</span>
</template>
<script setup lang="ts">
defineOptions({ name: "VerifyCode" });
// defineProps
const props = defineProps({
identifyCodes: {
//
type: String,
default: "1234567890abcdefghijklmnopqrstuvwxyz"
},
fontSizeMin: {
//
type: Number,
default: 25
},
fontSizeMax: {
//
type: Number,
default: 35
},
backgroundColorMin: {
//
type: Number,
default: 200
},
backgroundColorMax: {
//
type: Number,
default: 220
},
dotColorMin: {
//
type: Number,
default: 60
},
dotColorMax: {
//
type: Number,
default: 120
},
contentWidth: {
//
type: Number,
default: 100
},
contentHeight: {
//
type: Number,
default: 44
}
});
const emit = defineEmits(["verifyCodeChange"]);
const identifyCode = ref("");
watch(identifyCode, () => {
drawPic();
});
onMounted(() => {
drawPic();
makeCode(props.identifyCodes, 4);
});
//
const randomNum = (min: any, max: any) => {
return Math.floor(Math.random() * (max - min) + min);
};
//
const randomColor = (min: any, max: any) => {
let r = randomNum(min, max);
let g = randomNum(min, max);
let b = randomNum(min, max);
return "rgb(" + r + "," + g + "," + b + ")";
};
const drawPic = () => {
let canvas = <HTMLCanvasElement>document.getElementById("s-canvas");
if (!canvas) return;
let ctx = canvas.getContext("2d");
if (!ctx) return;
ctx.textBaseline = "bottom";
//
ctx.fillStyle = randomColor(props.backgroundColorMin, props.backgroundColorMax);
ctx.fillRect(0, 0, props.contentWidth, props.contentHeight);
//
for (let i = 0; i < identifyCode.value.length; i++) {
drawText(ctx, identifyCode.value[i], i);
}
drawLine(ctx);
drawDot(ctx);
};
const drawText = (ctx: any, txt: any, i: any) => {
ctx.fillStyle = randomColor(50, 160); //
ctx.font = randomNum(props.fontSizeMin, props.fontSizeMax) + "px SimHei"; //
let x = (i + 1) * (props.contentWidth / (identifyCode.value.length + 1));
let y = randomNum(props.fontSizeMax, props.contentHeight - 5);
let deg = randomNum(-30, 30);
//
ctx.translate(x, y);
ctx.rotate((deg * Math.PI) / 180);
ctx.fillText(txt, 0, 0);
//
ctx.rotate((-deg * Math.PI) / 180);
ctx.translate(-x, -y);
};
const drawLine = (ctx: any) => {
// 线
for (let i = 0; i < 4; i++) {
ctx.strokeStyle = randomColor(100, 200);
ctx.beginPath();
ctx.moveTo(randomNum(0, props.contentWidth), randomNum(0, props.contentHeight));
ctx.lineTo(randomNum(0, props.contentWidth), randomNum(0, props.contentHeight));
ctx.stroke();
}
};
const drawDot = (ctx: any) => {
//
for (let i = 0; i < 30; i++) {
ctx.fillStyle = randomColor(0, 255);
ctx.beginPath();
ctx.arc(randomNum(0, props.contentWidth), randomNum(0, props.contentHeight), 1, 0, 2 * Math.PI);
ctx.fill();
}
};
/*切换验证码start*/
const changeCode = () => {
identifyCode.value = "";
makeCode(props.identifyCodes, 4);
};
const makeCode = (e: any, n: any) => {
for (let i = 0; i < n; i++) {
identifyCode.value += e[randomNum(0, e.length)];
}
emit("verifyCodeChange", identifyCode.value);
};
/*切换验证码end*/
</script>
<style lang="scss" scoped></style>
<template>
<span class="s-canvas" @click="changeCode">
<canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas>
</span>
</template>
<script setup lang="ts">
defineOptions({ name: "VerifyCode" });
// defineProps
const props = defineProps({
identifyCodes: {
//
type: String,
default: "1234567890abcdefghijklmnopqrstuvwxyz"
},
fontSizeMin: {
//
type: Number,
default: 25
},
fontSizeMax: {
//
type: Number,
default: 35
},
backgroundColorMin: {
//
type: Number,
default: 200
},
backgroundColorMax: {
//
type: Number,
default: 220
},
dotColorMin: {
//
type: Number,
default: 60
},
dotColorMax: {
//
type: Number,
default: 120
},
contentWidth: {
//
type: Number,
default: 100
},
contentHeight: {
//
type: Number,
default: 44
}
});
const emit = defineEmits(["verifyCodeChange"]);
const identifyCode = ref("");
watch(identifyCode, () => {
drawPic();
});
onMounted(() => {
drawPic();
makeCode(props.identifyCodes, 4);
});
//
const randomNum = (min: any, max: any) => {
return Math.floor(Math.random() * (max - min) + min);
};
//
const randomColor = (min: any, max: any) => {
let r = randomNum(min, max);
let g = randomNum(min, max);
let b = randomNum(min, max);
return "rgb(" + r + "," + g + "," + b + ")";
};
const drawPic = () => {
let canvas = <HTMLCanvasElement>document.getElementById("s-canvas");
if (!canvas) return;
let ctx = canvas.getContext("2d");
if (!ctx) return;
ctx.textBaseline = "bottom";
//
ctx.fillStyle = randomColor(props.backgroundColorMin, props.backgroundColorMax);
ctx.fillRect(0, 0, props.contentWidth, props.contentHeight);
//
for (let i = 0; i < identifyCode.value.length; i++) {
drawText(ctx, identifyCode.value[i], i);
}
drawLine(ctx);
drawDot(ctx);
};
const drawText = (ctx: any, txt: any, i: any) => {
ctx.fillStyle = randomColor(50, 160); //
ctx.font = randomNum(props.fontSizeMin, props.fontSizeMax) + "px SimHei"; //
let x = (i + 1) * (props.contentWidth / (identifyCode.value.length + 1));
let y = randomNum(props.fontSizeMax, props.contentHeight - 5);
let deg = randomNum(-30, 30);
//
ctx.translate(x, y);
ctx.rotate((deg * Math.PI) / 180);
ctx.fillText(txt, 0, 0);
//
ctx.rotate((-deg * Math.PI) / 180);
ctx.translate(-x, -y);
};
const drawLine = (ctx: any) => {
// 线
for (let i = 0; i < 4; i++) {
ctx.strokeStyle = randomColor(100, 200);
ctx.beginPath();
ctx.moveTo(randomNum(0, props.contentWidth), randomNum(0, props.contentHeight));
ctx.lineTo(randomNum(0, props.contentWidth), randomNum(0, props.contentHeight));
ctx.stroke();
}
};
const drawDot = (ctx: any) => {
//
for (let i = 0; i < 30; i++) {
ctx.fillStyle = randomColor(0, 255);
ctx.beginPath();
ctx.arc(randomNum(0, props.contentWidth), randomNum(0, props.contentHeight), 1, 0, 2 * Math.PI);
ctx.fill();
}
};
/*切换验证码start*/
const changeCode = () => {
identifyCode.value = "";
makeCode(props.identifyCodes, 4);
};
const makeCode = (e: any, n: any) => {
for (let i = 0; i < n; i++) {
identifyCode.value += e[randomNum(0, e.length)];
}
emit("verifyCodeChange", identifyCode.value);
};
/*切换验证码end*/
</script>
<style lang="scss" scoped></style>

View File

@ -98,8 +98,8 @@
</a-layout-header>
</template>
<script setup lang="ts">
import Notice from "@/layout/components/Header/components/Notice/index.vue";
import Breadcrumb from "@/layout/components/Header/components/Breadcrumb/index.vue";
import Notice from "@/layout/components/Header/components/notice/index.vue";
import Breadcrumb from "@/layout/components/Header/components/breadcrumb/index.vue";
import myImage from "@/assets/img/my-image.jpg";
import pinia from "@/store/index";
import { Modal } from "@arco-design/web-vue";

View File

@ -31,7 +31,7 @@ export default defineConfig(({ mode }) => {
}),
createSvgIconsPlugin({
// 配置src下存放svg的路径这里表示在src/icons文件夹下
iconDirs: [path.resolve(process.cwd(), "src/icons")],
iconDirs: [path.resolve(process.cwd(), "src/assets/icons")],
symbolId: "icon-[dir]-[name]"
}),
AutoImport({