refactor: ♻️ eslint 代码规范调整

This commit is contained in:
ray
2024-10-13 10:42:48 +08:00
parent 72eb87d005
commit a4ef6eb696
66 changed files with 376 additions and 376 deletions

View File

@@ -27,7 +27,7 @@
</div>
</template>
<div :id="id" :class="className" :style="{ height, width }"></div>
<div :id="id" :class="className" :style="{ height, width }" />
</el-card>
</template>
@@ -190,7 +190,7 @@ const handleDownloadChart = () => {
if (ctx) {
ctx.drawImage(img, 0, 0, img.width, img.height);
const link = document.createElement("a");
link.download = `访问趋势.png`;
link.download = "访问趋势.png";
link.href = canvas.toDataURL("image/png", 0.9);
document.body.appendChild(link);
link.click();