style: 🌈移动端适配,进度条颜色跟随主题

This commit is contained in:
超凡
2025-03-27 00:01:44 +08:00
parent 03968a6cc1
commit 61ae8ba350
5 changed files with 63 additions and 191 deletions

View File

@@ -32,11 +32,7 @@ module.exports = {
}, },
], ],
// 允许使用未知伪元素 // 允许使用未知伪元素
"at-rule-no-unknown": [ "at-rule-no-unknown": null, // 禁用默认的未知 at-rule 检查
true, "scss/at-rule-no-unknown": true, // 启用 SCSS 特定的 at-rule 检查
{
ignoreAtRules: ["apply", "use", "forward", "extend"],
},
],
}, },
}; };

View File

@@ -74,9 +74,9 @@ import { useSettingsStore, usePermissionStore, useAppStore } from "@/store";
// 颜色预设 // 颜色预设
const colorPresets = [ const colorPresets = [
"#4080FF", "#4080FF",
"#626AEF",
"#ff4500", "#ff4500",
"#ff8c00", "#ff8c00",
"#90ee90",
"#00ced1", "#00ced1",
"#1e90ff", "#1e90ff",
"#c71585", "#c71585",

View File

@@ -17,12 +17,7 @@
padding: calc(var(--el-card-padding) - 8px) var(--el-card-padding); padding: calc(var(--el-card-padding) - 8px) var(--el-card-padding);
} }
.link-type, // 进度条颜色
.link-type:focus { #nprogress .bar {
color: #337ab7; background-color: var(--el-color-primary);
cursor: pointer;
&:hover {
color: rgb(32 160 255);
}
} }

View File

@@ -1,85 +1,25 @@
<template> <template>
<div class="page-container"> <div class="p-5 pb-0 sm:p-10 lg:p-20 w-full">
<el-button icon="arrow-left" @click="back">返回</el-button> <el-button icon="arrow-left" @click="router.back()">返回</el-button>
<el-row> <el-row>
<el-col :span="12"> <el-col :xs="24" :span="12">
<h1 class="text-jumbo text-ginormous">Oops!</h1> <h1 class="text-6xl font-bold text-[#484848]">Oops!</h1>
<h2>你没有权限去该页面</h2> <h2>你没有权限去该页面</h2>
<h6>如有不满请联系你领导</h6> <h6>如有不满请联系你领导</h6>
<ul class="list-unstyled"> <div class="flex flex-col items-start gap-1.5 text-sm">
<li>或者你可以去:</li> <span>或者你可以去:</span>
<li class="link-type"> <el-link type="primary" @click="router.push('/dashboard')">回首页</el-link>
<router-link to="/dashboard">回首页</router-link> <el-link type="primary" href="https://www.youlai.tech/">随便看看</el-link>
</li> </div>
<li class="link-type">
<a href="https://www.youlai.tech/">随便看看</a>
</li>
</ul>
</el-col> </el-col>
<el-col :span="12"> <el-col :xs="24" :span="12">
<img src="@/assets/images/401.svg" width="400" height="500" /> <img src="@/assets/images/401.svg" class="w-full" />
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { useRouter } from "vue-router"; defineOptions({ name: "Page401" });
defineOptions({
name: "Page401",
});
const router = useRouter(); const router = useRouter();
function back() {
router.back();
}
</script> </script>
<style lang="scss" scoped>
.page-container {
width: 100%;
padding: 100px;
.pan-back-btn {
color: #fff;
background: #008489;
border: none !important;
}
.pan-gif {
display: block;
margin: 0 auto;
}
.pan-img {
display: block;
width: 100%;
margin: 0 auto;
}
.text-jumbo {
font-size: 60px;
font-weight: 700;
color: #484848;
}
.list-unstyled {
font-size: 14px;
li {
padding-bottom: 5px;
}
a {
color: #008489;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
</style>

View File

@@ -1,123 +1,64 @@
<template> <template>
<div class="page-container"> <div class="wh-full mx-auto flex-center flex-col lg:flex-row">
<div class="pic-404"> <img class="min-w-[23.4375rem] sm:w-150" src="@/assets/images/404.svg" alt="404" />
<img class="pic-404__parent" src="@/assets/images/404.svg" alt="404" /> <div class="w-75">
</div> <div class="oops mb-5 text-[2rem] font-bold">OOPS</div>
<div class="bullshit"> <div class="info text-gray mb-7 text-[0.8125rem]">
<div class="bullshit__oops">OOPS</div>
<div class="bullshit__info">
该页面无法访问 该页面无法访问
<a style="color: #20a0ff" href="https://www.youlai.tech.com" target="_blank"> <el-link type="primary" href="https://www.youlai.tech.com" target="_blank">
有来开源官网 有来开源官网
</a> </el-link>
</div> </div>
<div class="bullshit__headline">抱歉您访问的页面不存在</div> <div class="headline mb-2.5 text-xl font-bold text-[#222]">抱歉您访问的页面不存在</div>
<div class="bullshit__info">请确认您输入的网址是否正确或者点击下方按钮返回首页</div> <div class="info text-gray mb-7 text-[0.8125rem]">
<a href="#" class="bullshit__return-home" @click.prevent="back">返回首页</a> 请确认您输入的网址是否正确或者点击下方按钮返回首页
</div>
<el-button round type="primary" class="btn h-9 w-28 mb-10" @click="back">返回首页</el-button>
</div> </div>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { useRouter } from "vue-router"; defineOptions({ name: "Page404" });
defineOptions({
name: "Page404",
});
const router = useRouter(); const router = useRouter();
const back = () => router.push("/");
function back() {
router.back();
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.page-container { @mixin slide-up-animation($delay: 0s) {
display: flex; opacity: 0;
padding: 100px; animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: $delay;
animation-fill-mode: forwards;
}
.pic-404 { @keyframes slideUp {
width: 600px; 0% {
overflow: hidden; opacity: 0;
transform: translateY(60px);
&__parent {
width: 100%;
}
} }
.bullshit { 100% {
width: 300px; opacity: 1;
padding: 50px 0; transform: translateY(0);
overflow: hidden;
&__oops {
margin-bottom: 20px;
font-size: 32px;
font-weight: bold;
line-height: 40px;
color: #1482f0;
opacity: 0;
animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
&__headline {
margin-bottom: 10px;
font-size: 20px;
font-weight: bold;
line-height: 24px;
color: #222;
opacity: 0;
animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;
}
&__info {
margin-bottom: 30px;
font-size: 13px;
line-height: 21px;
color: grey;
opacity: 0;
animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.2s;
animation-fill-mode: forwards;
}
&__return-home {
float: left;
display: block;
width: 110px;
height: 36px;
font-size: 14px;
line-height: 36px;
color: #fff;
text-align: center;
cursor: pointer;
background: #1482f0;
border-radius: 100px;
opacity: 0;
animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;
}
@keyframes slideUp {
0% {
opacity: 0;
transform: translateY(60px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
} }
} }
.oops {
color: var(--el-color-primary);
@include slide-up-animation(0s);
}
.headline {
@include slide-up-animation(0.1s);
}
.info {
@include slide-up-animation(0.2s);
}
.btn {
@include slide-up-animation(0.3s);
}
</style> </style>