Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
263e8521
提交
263e8521
authored
2月 22, 2023
作者:
方治民
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: 文档显示优化
上级
c476b767
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
12 行增加
和
12 行删除
+12
-12
index.vue
src/layouts/default/footer/index.vue
+4
-4
siteSetting.ts
src/settings/siteSetting.ts
+2
-2
index.vue
src/views/sys/about/index.vue
+6
-6
没有找到文件。
src/layouts/default/footer/index.vue
浏览文件 @
263e8521
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
:class=
"`$
{prefixCls}__links`">
<div
:class=
"`$
{prefixCls}__links`">
<a
@
click=
"openWindow(SITE_URL)"
>
{{
t
(
'layout.footer.onlinePreview'
)
}}
</a>
<a
@
click=
"openWindow(SITE_URL)"
>
{{
t
(
'layout.footer.onlinePreview'
)
}}
</a>
<GithubFilled
@
click=
"openWindow(GIT
LAB_URL)"
:class=
"`$
{prefixCls}__github
`" />
<GithubFilled
@
click=
"openWindow(GIT
_URL)"
:class=
"`$
{prefixCls}__git
`" />
<a
@
click=
"openWindow(DOC_URL)"
>
{{
t
(
'layout.footer.onlineDocument'
)
}}
</a>
<a
@
click=
"openWindow(DOC_URL)"
>
{{
t
(
'layout.footer.onlineDocument'
)
}}
</a>
</div>
</div>
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
import
{
GithubFilled
}
from
'@ant-design/icons-vue'
import
{
GithubFilled
}
from
'@ant-design/icons-vue'
import
{
DOC_URL
,
GIT
LAB
_URL
,
SITE_URL
}
from
'/@/settings/siteSetting'
import
{
DOC_URL
,
GIT_URL
,
SITE_URL
}
from
'/@/settings/siteSetting'
import
{
openWindow
}
from
'/@/utils'
import
{
openWindow
}
from
'/@/utils'
import
{
useI18n
}
from
'/@/hooks/web/useI18n'
import
{
useI18n
}
from
'/@/hooks/web/useI18n'
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
prefixCls
,
prefixCls
,
t
,
t
,
DOC_URL
,
DOC_URL
,
GIT
LAB
_URL
,
GIT_URL
,
SITE_URL
,
SITE_URL
,
openWindow
,
openWindow
,
footerRef
,
footerRef
,
...
@@ -84,7 +84,7 @@
...
@@ -84,7 +84,7 @@
}
}
}
}
&
__git
hub
{
&
__git
{
margin
:
0
30px
;
margin
:
0
30px
;
&:hover
{
&:hover
{
...
...
src/settings/siteSetting.ts
浏览文件 @
263e8521
// git
lab
repo url
// git repo url
export
const
GIT
LAB
_URL
=
'https://gitlab.yiring.com/basic/basic-vue-admin'
export
const
GIT_URL
=
'https://gitlab.yiring.com/basic/basic-vue-admin'
// README.md
// README.md
export
const
DOC_URL
=
'https://gitlab.yiring.com/basic/basic-vue-admin/blob/main/README.md'
export
const
DOC_URL
=
'https://gitlab.yiring.com/basic/basic-vue-admin/blob/main/README.md'
...
...
src/views/sys/about/index.vue
浏览文件 @
263e8521
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<template
#
headerContent
>
<template
#
headerContent
>
<div
class=
"flex justify-between items-center"
>
<div
class=
"flex justify-between items-center"
>
<span
class=
"flex-1"
>
<span
class=
"flex-1"
>
<a
:href=
"GIT
LAB
_URL"
target=
"_blank"
>
{{
name
}}
</a>
<a
:href=
"GIT_URL"
target=
"_blank"
>
{{
name
}}
</a>
是一个基于Vue3.0、Vite、 Ant-Design-Vue 、TypeScript 的后台解决方案, 目标是为项目开发,
是一个基于Vue3.0、Vite、 Ant-Design-Vue 、TypeScript 的后台解决方案, 目标是为项目开发,
提供现成的开箱解决方案。
提供现成的开箱解决方案。
</span>
</span>
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
import
{
Tag
}
from
'ant-design-vue'
import
{
Tag
}
from
'ant-design-vue'
import
{
PageWrapper
}
from
'/@/components/Page'
import
{
PageWrapper
}
from
'/@/components/Page'
import
{
Description
,
DescItem
,
useDescription
}
from
'/@/components/Description/index'
import
{
Description
,
DescItem
,
useDescription
}
from
'/@/components/Description/index'
import
{
GIT
LAB
_URL
,
SITE_URL
,
DOC_URL
}
from
'/@/settings/siteSetting'
import
{
GIT_URL
,
SITE_URL
,
DOC_URL
}
from
'/@/settings/siteSetting'
const
{
pkg
,
lastBuildTime
}
=
__APP_INFO__
const
{
pkg
,
lastBuildTime
}
=
__APP_INFO__
...
@@ -53,9 +53,9 @@
...
@@ -53,9 +53,9 @@
render
:
commonLinkRender
(
'预览地址'
),
render
:
commonLinkRender
(
'预览地址'
),
},
},
{
{
label
:
'Git
Lab
'
,
label
:
'Git'
,
field
:
'git
lab
'
,
field
:
'git'
,
render
:
commonLinkRender
(
'GitLab'
),
render
:
commonLinkRender
(
GIT_URL
),
},
},
]
]
...
@@ -64,7 +64,7 @@
...
@@ -64,7 +64,7 @@
lastBuildTime
,
lastBuildTime
,
doc
:
DOC_URL
,
doc
:
DOC_URL
,
preview
:
SITE_URL
,
preview
:
SITE_URL
,
git
lab
:
GITLAB
_URL
,
git
:
GIT
_URL
,
}
}
Object
.
keys
(
dependencies
).
forEach
((
key
)
=>
{
Object
.
keys
(
dependencies
).
forEach
((
key
)
=>
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论