Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
FLIPPED-AURORA
gin-vue-admin
提交
83253142
G
gin-vue-admin
项目概览
FLIPPED-AURORA
/
gin-vue-admin
大约 1 年 前同步成功
通知
345
Star
18155
Fork
5506
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
G
gin-vue-admin
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
83253142
编写于
7月 26, 2020
作者:
Mr.奇淼(
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/gin-vue-admin_v2_dev' into gin-vue-admin_v2_dev
上级
c5b1f279
a9401cf0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
48 addition
and
6 deletion
+48
-6
server/service/sys_dictionary.go
server/service/sys_dictionary.go
+4
-4
web/src/view/layout/bottomInfo/bottomInfo.vue
web/src/view/layout/bottomInfo/bottomInfo.vue
+37
-0
web/src/view/layout/index.vue
web/src/view/layout/index.vue
+7
-2
未找到文件。
server/service/sys_dictionary.go
浏览文件 @
83253142
...
...
@@ -85,16 +85,16 @@ func GetSysDictionaryInfoList(info request.SysDictionarySearch) (err error, list
var
sysDictionarys
[]
model
.
SysDictionary
// 如果有条件搜索 下方会自动创建搜索语句
if
info
.
Name
!=
""
{
db
=
db
.
Where
(
"
name
LIKE ?"
,
"%"
+
info
.
Name
+
"%"
)
db
=
db
.
Where
(
"
`name`
LIKE ?"
,
"%"
+
info
.
Name
+
"%"
)
}
if
info
.
Type
!=
""
{
db
=
db
.
Where
(
"
type
LIKE ?"
,
"%"
+
info
.
Type
+
"%"
)
db
=
db
.
Where
(
"
`type`
LIKE ?"
,
"%"
+
info
.
Type
+
"%"
)
}
if
info
.
Status
!=
nil
{
db
=
db
.
Where
(
"
status
= ?"
,
info
.
Status
)
db
=
db
.
Where
(
"
`status`
= ?"
,
info
.
Status
)
}
if
info
.
Desc
!=
""
{
db
=
db
.
Where
(
"
desc
LIKE ?"
,
"%"
+
info
.
Desc
+
"%"
)
db
=
db
.
Where
(
"
`desc`
LIKE ?"
,
"%"
+
info
.
Desc
+
"%"
)
}
err
=
db
.
Count
(
&
total
)
.
Error
err
=
db
.
Limit
(
limit
)
.
Offset
(
offset
)
.
Find
(
&
sysDictionarys
)
.
Error
...
...
web/src/view/layout/bottomInfo/bottomInfo.vue
0 → 100644
浏览文件 @
83253142
<
template
>
<div
class=
"bottom-info"
>
<div>
<span>
Powered by
</span>
<span>
<a
href=
"https://github.com/flipped-aurora/gin-vue-admin"
>
gin-vue-admin
</a>
</span>
<el-divider
direction=
"vertical"
></el-divider>
<span>
Copyright
</span>
<span>
<a
href=
"https://github.com/flipped-aurora"
>
flipped-aurora团队
</a>
</span>
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
"
BottomInfo
"
}
</
script
>
<
style
lang=
"scss"
>
.bottom-info
{
color
:
#888
;
height
:
30px
;
line-height
:
12px
;
a
{
color
:
#888
;
}
div
{
display
:
flex
;
justify-content
:
center
;
span
{
margin
:
0
3px
;
}
}
}
</
style
>
web/src/view/layout/index.vue
浏览文件 @
83253142
...
...
@@ -64,6 +64,7 @@
<transition
mode=
"out-in"
name=
"el-fade-in-linear"
>
<router-view
class=
"admin-box"
v-if=
"!$route.meta.keepAlive"
></router-view>
</transition>
<BottomInfo
/>
</el-main>
</el-container>
<el-dialog
:visible.sync=
"showPassword"
@
close=
"clearPassword"
title=
"修改密码"
width=
"360px"
>
...
...
@@ -91,6 +92,7 @@ import Aside from '@/view/layout/aside'
import
HistoryComponent
from
'
@/view/layout/aside/historyComponent/history
'
import
Screenfull
from
'
@/view/layout/screenfull
'
import
Search
from
'
@/view/layout/search/search
'
import
BottomInfo
from
'
@/view/layout/bottomInfo/bottomInfo
'
import
{
mapGetters
,
mapActions
}
from
'
vuex
'
import
{
changePassword
}
from
'
@/api/user
'
export
default
{
...
...
@@ -135,7 +137,8 @@ export default {
Aside
,
HistoryComponent
,
Screenfull
,
Search
Search
,
BottomInfo
},
methods
:
{
...
mapActions
(
'
user
'
,
[
'
LoginOut
'
]),
...
...
@@ -241,6 +244,7 @@ $mainHight: 100vh;
z-index
:
999
;
}
.admin-box
{
min-height
:
calc
(
100vh
-
240px
);
background-color
:
rgb
(
255
,
255
,
255
);
margin-top
:
100px
;
}
...
...
@@ -272,7 +276,7 @@ $mainHight: 100vh;
// padding: 6px;
// border-bottom: 1px solid #eee;
}
&
.el-main
{
overflow
:
auto
;
background
:
#fff
;
...
...
@@ -366,6 +370,7 @@ $mainHight: 100vh;
}
}
.screenfull
{
display
:
inline-block
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录