Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
intel_promotion_manage
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
张伯涛
intel_promotion_manage
Commits
3b4ae4dc
Commit
3b4ae4dc
authored
Jul 09, 2024
by
张伯涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
备案号
parent
16d69ca8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
83 additions
and
2 deletions
+83
-2
index.vue
src/layout/index.vue
+38
-2
login.vue
src/views/login/login.vue
+45
-0
No files found.
src/layout/index.vue
View file @
3b4ae4dc
...
@@ -7,11 +7,18 @@
...
@@ -7,11 +7,18 @@
<Header
/>
<Header
/>
</div>
</div>
<div
class=
"nav-container-two"
>
<div
class=
"nav-container-two"
>
<div
class=
"placeholder"
></div
>
<div
class=
"placeholder"
/
>
<tags-view
/>
<tags-view
/>
<navbar
/>
<navbar
/>
</div>
</div>
<app-main
/>
<app-main
/>
<div
class=
"footer"
>
<div
class=
"titleText"
>
Copyrights © 2024 All Rights Reserved by
</div>
<div
class=
"text_body"
>
<div
class=
"textOne"
@
click=
"handleJumpTextOne"
>
京ICP备2024075637号-1
</div>
<div
class=
"textTwo"
@
click=
"handleJumpTextTwo"
>
津公网安备
</div>
</div>
</div>
<right-panel>
<right-panel>
<settings
/>
<settings
/>
</right-panel>
</right-panel>
...
@@ -57,6 +64,12 @@ export default {
...
@@ -57,6 +64,12 @@ export default {
}
}
},
},
methods
:
{
methods
:
{
handleJumpTextOne
()
{
window
.
open
(
'https://beian.miit.gov.cn/#/Integrated/index'
,
'_blank'
)
},
handleJumpTextTwo
()
{
window
.
open
(
'https://beian.mps.gov.cn/#/query/webSearch?code='
,
'_blank'
)
},
handleClickOutside
()
{
handleClickOutside
()
{
this
.
$store
.
dispatch
(
'app/closeSideBar'
,
{
withoutAnimation
:
false
})
this
.
$store
.
dispatch
(
'app/closeSideBar'
,
{
withoutAnimation
:
false
})
}
}
...
@@ -65,5 +78,28 @@ export default {
...
@@ -65,5 +78,28 @@ export default {
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.footer
{
width
:
100%
;
height
:
80px
;
background-color
:
#214E90
;
.titleText
{
padding
:
15px
0
;
text-align
:
center
;
color
:
#FFFFFF
;
}
.text_body
{
display
:
flex
;
justify-content
:
center
;
.textOne
{
cursor
:
pointer
;
color
:
#FFFFFF
;
padding
:
0
15px
;
}
.textTwo
{
cursor
:
pointer
;
color
:
#FFFFFF
;
padding
:
0
15px
;
}
}
}
</
style
>
</
style
>
src/views/login/login.vue
View file @
3b4ae4dc
...
@@ -108,6 +108,13 @@
...
@@ -108,6 +108,13 @@
</el-form>
</el-form>
<!-- 底部 -->
<!-- 底部 -->
<div
class=
"el-login-footer"
/>
<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备2024075637号-1
</div>
<div
class=
"textTwo"
@
click=
"handleJumpTextTwo"
>
津公网安备
</div>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -154,6 +161,12 @@ export default {
...
@@ -154,6 +161,12 @@ export default {
this
.
getCookie
()
this
.
getCookie
()
},
},
methods
:
{
methods
:
{
handleJumpTextOne
()
{
window
.
open
(
'https://beian.miit.gov.cn/#/Integrated/index'
,
'_blank'
)
},
handleJumpTextTwo
()
{
window
.
open
(
'https://beian.mps.gov.cn/#/query/webSearch?code='
,
'_blank'
)
},
goDetail
(
path
)
{
goDetail
(
path
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
path
,
path
:
path
,
...
@@ -576,3 +589,35 @@ export default {
...
@@ -576,3 +589,35 @@ export default {
}
}
</
style
>
</
style
>
<
style
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
;
padding
:
0
15px
;
}
.textTwo
{
cursor
:
pointer
;
color
:
#FFFFFF
;
padding
:
0
15px
;
}
}
}
</
style
>
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