Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
6e523d66
Commit
6e523d66
authored
Apr 21, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
是
parent
2e86549b
Pipeline
#61
canceled with stages
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
48 additions
and
25 deletions
+48
-25
App.vue
src/App.vue
+3
-1
loginBack.jpg
src/assets/img/loginBack.jpg
+0
-0
logo.png
src/assets/logo.png
+0
-0
HelloWorld.vue
src/components/HelloWorld.vue
+0
-20
Login.vue
src/components/Login.vue
+42
-0
index.js
src/router/index.js
+3
-4
No files found.
src/App.vue
View file @
6e523d66
...
...
@@ -11,5 +11,7 @@ export default {
</
script
>
<
style
>
#app
{
height
:
100%
;
}
</
style
>
src/assets/img/loginBack.jpg
0 → 100644
View file @
6e523d66
94.2 KB
src/assets/logo.png
deleted
100644 → 0
View file @
2e86549b
6.69 KB
src/components/HelloWorld.vue
deleted
100644 → 0
View file @
2e86549b
<
template
>
<div>
</div>
</
template
>
<
script
>
export
default
{
name
:
'Login'
,
data
()
{
return
{
msg
:
''
}
}
}
</
script
>
<
style
>
</
style
>
src/components/Login.vue
0 → 100644
View file @
6e523d66
<
style
>
*
{
margin
:
0
;
padding
:
0
;
}
.loginDiv
{
width
:
100%
;
height
:
100%
;
background-image
:
url('../assets/img/loginBack.jpg')
;
position
:
relative
;
background-size
:
cover
;
background-size
:
100%
100%
;
background-position
:
center
;
}
.loginOpacity
{
background-color
:
rgba
(
0
,
0
,
0
,
0.15
);
height
:
100%
;
width
:
100%
;
position
:
absolute
;
left
:
0
;
top
:
0
;
z-index
:
1
;
}
</
style
>
<
template
>
<div
class=
"loginDiv"
>
<!--
<div
class=
"loginOpacity"
>
</div>
-->
</div>
</
template
>
<
script
>
export
default
{
name
:
'Login'
,
data
()
{
return
{
msg
:
''
}
}
}
</
script
>
\ No newline at end of file
src/router/index.js
View file @
6e523d66
import
Vue
from
'vue'
import
Router
from
'vue-router'
import
HelloWorld
from
'@/components/HelloWorld'
Vue
.
use
(
Router
)
export
default
new
Router
({
routes
:
[
{
path
:
'/'
,
name
:
'
HelloWorld
'
,
component
:
HelloWorld
path
:
'/
Login
'
,
name
:
'
Login
'
,
component
:
resolve
=>
require
([
'@/components/Login'
],
resolve
),
},
{
path
:
'/homeIndex'
,
...
...
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