media: 🎁 新增备案信息
This commit is contained in:
parent
21d7744826
commit
e863367a78
|
@ -23,12 +23,12 @@ VITE_BASE_API_RETRY=5
|
|||
VITE_BASE_API_RETRY_DELAY=3000
|
||||
|
||||
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
|
||||
VITE_CDN=true
|
||||
VITE_CDN=false
|
||||
|
||||
# 是否启用gzip压缩或brotli压缩(分两种情况,删除原始文件和不删除原始文件)
|
||||
# 压缩时不删除原始文件的配置:gzip、brotli、both(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
||||
# 压缩时删除原始文件的配置:gzip-clear、brotli-clear、both-clear(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
||||
VITE_COMPRESSION="none"
|
||||
VITE_COMPRESSION="gzip"
|
||||
|
||||
# 开发环境读取配置文件路径
|
||||
VITE_PUBLIC_PATH=/
|
||||
|
|
19
index.html
19
index.html
|
@ -1,15 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<meta name="renderer" content="webkit" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
|
||||
/>
|
||||
<title>pure-admin-thin</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
|
||||
<meta content="webkit" name="renderer" />
|
||||
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport" />
|
||||
<title>bunny-admin</title>
|
||||
<link href="/favicon.ico" rel="icon" />
|
||||
<script>
|
||||
window.process = {};
|
||||
</script>
|
||||
|
@ -56,7 +53,7 @@
|
|||
.loader::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
|
||||
.loader::before {
|
||||
|
@ -82,6 +79,6 @@
|
|||
</style>
|
||||
<div class="loader"></div>
|
||||
</div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
<script src="/src/main.ts" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -9,6 +9,7 @@ const Copyright = getConfig('Copyright');
|
|||
<footer class="layout-footer text-[rgba(0,0,0,0.6)] dark:text-[rgba(220,220,242,0.8)]">
|
||||
{{ Copyright }}
|
||||
<a class="hover:text-primary" href="https://github.com/pure-admin" target="_blank"> {{ TITLE }} </a>
|
||||
<a href="https://beian.miit.gov.cn/" target="_blank"> 苏ICP备2023044078号-1</a>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -77,6 +77,10 @@ onMounted(() => {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<a href="https://beian.miit.gov.cn/" target="_blank"> 苏ICP备2023044078号-1</a>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
@ -84,6 +88,13 @@ onMounted(() => {
|
|||
</style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
footer {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
:deep(.el-input-group__append, .el-input-group__prepend) {
|
||||
padding: 0;
|
||||
}
|
||||
|
|
|
@ -209,7 +209,7 @@ export const onChangeMenuRank = async (row: any) => {
|
|||
*/
|
||||
export const assignRolesToRouter = (row: any) => {
|
||||
addDialog({
|
||||
title: `为 ${row.name} 分配角色`,
|
||||
title: `为 【${$t(row.name)}】 分配角色`,
|
||||
width: '45%',
|
||||
draggable: true,
|
||||
closeOnClickModal: false,
|
||||
|
|
Loading…
Reference in New Issue