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' { declare module 'vue' {
export interface GlobalComponents { export interface GlobalComponents {
MainTransition: typeof import('./components/MainTransition/index.vue')['default'] MainTransition: typeof import('./components/main-transition/index.vue')['default']
MyTransition: typeof import('./components/MyTransition/index.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink'] RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView'] RouterView: typeof import('vue-router')['RouterView']
SvgIcon: typeof import('./components/SvgIcon/index.vue')['default'] SvgIcon: typeof import('./components/svg-icon/index.vue')['default']
Transition: typeof import('./components/Transition/index.vue')['default'] VerifyCode: typeof import('./components/verify-code/index.vue')['default']
VerifyCode: typeof import('./components/VerifyCode/index.vue')['default']
} }
} }

View File

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

View File

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

View File

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