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

@@ -1,85 +1,25 @@
<template>
<div class="page-container">
<el-button icon="arrow-left" @click="back">返回</el-button>
<div class="p-5 pb-0 sm:p-10 lg:p-20 w-full">
<el-button icon="arrow-left" @click="router.back()">返回</el-button>
<el-row>
<el-col :span="12">
<h1 class="text-jumbo text-ginormous">Oops!</h1>
<el-col :xs="24" :span="12">
<h1 class="text-6xl font-bold text-[#484848]">Oops!</h1>
<h2>你没有权限去该页面</h2>
<h6>如有不满请联系你领导</h6>
<ul class="list-unstyled">
<li>或者你可以去:</li>
<li class="link-type">
<router-link to="/dashboard">回首页</router-link>
</li>
<li class="link-type">
<a href="https://www.youlai.tech/">随便看看</a>
</li>
</ul>
<div class="flex flex-col items-start gap-1.5 text-sm">
<span>或者你可以去:</span>
<el-link type="primary" @click="router.push('/dashboard')">回首页</el-link>
<el-link type="primary" href="https://www.youlai.tech/">随便看看</el-link>
</div>
</el-col>
<el-col :span="12">
<img src="@/assets/images/401.svg" width="400" height="500" />
<el-col :xs="24" :span="12">
<img src="@/assets/images/401.svg" class="w-full" />
</el-col>
</el-row>
</div>
</template>
<script setup lang="ts">
import { useRouter } from "vue-router";
defineOptions({
name: "Page401",
});
defineOptions({ name: "Page401" });
const router = useRouter();
function back() {
router.back();
}
</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>