Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust_web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
cust_web
Commits
036bf2eb
Commit
036bf2eb
authored
Dec 30, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加了页面的底部备案信息
parent
a60da243
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
3 deletions
+97
-3
policeDadgeIcon.png
src/assets/image/policeDadgeIcon.png
+0
-0
index.vue
src/layout/index.vue
+48
-2
login.vue
src/views/login/login.vue
+49
-1
No files found.
src/assets/image/policeDadgeIcon.png
0 → 100644
View file @
036bf2eb
18.8 KB
src/layout/index.vue
View file @
036bf2eb
...
...
@@ -27,8 +27,15 @@
<el-card
v-if=
"themeType && themeType === '8'"
style=
"margin:.75rem"
>
<app-main
/>
</el-card>
<app-main
v-else
/>
<div
class=
"footer"
>
<div
class=
"titleText"
>
Copyrights © 2024 All Rights Reserved by
</div>
<div
class=
"text_body"
>
<div
class=
"textOne"
@
click=
"handleJumpTextOne"
>
京ICP备xxxxxxx号-1
</div>
<img
v-if=
"logo"
:src=
"logo"
class=
"bottomLogo"
>
<div
class=
"textTwo"
@
click=
"handleJumpTextTwo"
>
津公网安备xxxxxxxxxx
</div>
</div>
</div>
<right-panel>
<settings
/>
</right-panel>
...
...
@@ -58,6 +65,11 @@ export default {
settings
},
mixins
:
[
ResizeMixin
],
data
()
{
return
{
logo
:
require
(
'@/assets/image/policeDadgeIcon.png'
)
}
},
computed
:
{
currentPath
()
{
// R正常路由跳转 Y打开新页且没有菜单结构 G打开新页有菜单结构
...
...
@@ -88,6 +100,12 @@ export default {
console
.
log
(
'aaaaa'
,
this
.
$route
)
},
methods
:
{
handleJumpTextOne
()
{
window
.
open
(
'https://beian.miit.gov.cn/#/Integrated/index'
,
'_blank'
)
},
handleJumpTextTwo
()
{
window
.
open
(
'https://beian.mps.gov.cn/#/query/webSearch?code=12011602300248'
,
'_blank'
)
},
handleClickOutside
()
{
this
.
$store
.
dispatch
(
'app/closeSideBar'
,
{
withoutAnimation
:
false
})
}
...
...
@@ -95,4 +113,32 @@ export default {
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
<
style
lang=
"scss"
scoped
>
.footer
{
width
:
100%
;
height
:
80px
;
background-color
:
#F4F4F4
;
.titleText
{
padding
:
15px
0
;
text-align
:
center
;
color
:
black
;
}
.text_body
{
display
:
flex
;
justify-content
:
center
;
.textOne
{
cursor
:
pointer
;
color
:
black
;
}
.bottomLogo
{
width
:
20px
;
height
:
20px
;
margin
:
0
10px
;
}
.textTwo
{
cursor
:
pointer
;
color
:
black
;
}
}
}
</
style
>
src/views/login/login.vue
View file @
036bf2eb
...
...
@@ -166,6 +166,14 @@
</el-form>
<!-- 底部 -->
<div
class=
"el-login-footer"
/>
<div
class=
"footer"
>
<div
class=
"titleText"
>
Copyrights © 2024 All Rights Reserved by
</div>
<div
class=
"text_body"
>
<div
class=
"textOne"
@
click=
"handleJumpTextOne"
>
京ICP备xxxxxxx号-1
</div>
<img
v-if=
"logo"
:src=
"logo"
class=
"bottomLogo"
>
<div
class=
"textTwo"
@
click=
"handleJumpTextTwo"
>
津公网安备xxxxxxxxxxxxx
</div>
</div>
</div>
</div>
</
template
>
...
...
@@ -180,6 +188,7 @@ export default {
components
:
{
Verify
},
data
()
{
return
{
logo
:
require
(
'@/assets/image/policeDadgeIcon.png'
),
reLocation
:
''
,
codeUrl
:
''
,
cookiePassword
:
''
,
...
...
@@ -214,6 +223,12 @@ export default {
this
.
getCookie
()
},
methods
:
{
handleJumpTextOne
()
{
window
.
open
(
'https://beian.miit.gov.cn/#/Integrated/index'
,
'_blank'
)
},
handleJumpTextTwo
()
{
window
.
open
(
'https://beian.mps.gov.cn/#/query/webSearch?code=12011602300248'
,
'_blank'
)
},
goDetail
(
path
)
{
this
.
$router
.
push
({
path
:
path
,
...
...
@@ -325,7 +340,40 @@ export default {
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.footer
{
font-size
:
14px
;
width
:
100%
;
height
:
80px
;
background-color
:
#214E90
;
position
:
fixed
;
bottom
:
0
;
text-align
:
center
;
color
:
#fff
;
letter-spacing
:
1px
;
.titleText
{
padding
:
15px
0
;
text-align
:
center
;
color
:
#FFFFFF
;
}
.text_body
{
display
:
flex
;
justify-content
:
center
;
.textOne
{
cursor
:
pointer
;
color
:
#FFFFFF
;
}
.bottomLogo
{
width
:
20px
;
height
:
20px
;
margin
:
0
10px
;
}
.textTwo
{
cursor
:
pointer
;
color
:
#FFFFFF
;
}
}
}
.my_btn
{
position
:
relative
;
width
:
100%
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment