Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
projectMgmtClient
Overview
Overview
Details
Activity
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
node_server
projectMgmtClient
Commits
b65ecd7e
Commit
b65ecd7e
authored
Jul 13, 2022
by
孙香冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
3c1d90f7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
109 additions
and
27 deletions
+109
-27
contact.vue
src/pages/animated/contact.vue
+6
-6
index.vue
src/pages/animated/index.vue
+6
-6
projects.vue
src/pages/animated/projects.vue
+6
-6
services.vue
src/pages/animated/services.vue
+6
-6
projectDetails.vue
src/pages/boss/projectDetails.vue
+16
-0
pwd.vue
src/pages/set/pwd.vue
+68
-3
index.js
src/router/index.js
+1
-0
No files found.
src/pages/animated/contact.vue
View file @
b65ecd7e
...
@@ -89,14 +89,14 @@
...
@@ -89,14 +89,14 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
*
as
modernizr
from
'./js/modernizr'
;
//
import * as modernizr from './js/modernizr';
import
*
as
velocity
from
'./js/velocity'
;
//
import * as velocity from './js/velocity';
import
*
as
main
from
'./js/main'
;
//
import * as main from './js/main';
export
default
{
export
default
{
modernizr
,
//
modernizr,
velocity
,
//
velocity,
main
,
//
main,
};
};
</
script
>
</
script
>
...
...
src/pages/animated/index.vue
View file @
b65ecd7e
...
@@ -69,14 +69,14 @@
...
@@ -69,14 +69,14 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
*
as
modernizr
from
'./js/modernizr'
;
//
import * as modernizr from './js/modernizr';
import
*
as
velocity
from
'./js/velocity'
;
//
import * as velocity from './js/velocity';
import
*
as
main
from
'./js/main'
;
//
import * as main from './js/main';
export
default
{
export
default
{
modernizr
,
//
modernizr,
velocity
,
//
velocity,
main
,
//
main,
};
};
</
script
>
</
script
>
...
...
src/pages/animated/projects.vue
View file @
b65ecd7e
...
@@ -95,14 +95,14 @@
...
@@ -95,14 +95,14 @@
<
script
>
<
script
>
import
*
as
modernizr
from
'./js/modernizr'
;
//
import * as modernizr from './js/modernizr';
import
*
as
velocity
from
'./js/velocity'
;
//
import * as velocity from './js/velocity';
import
*
as
main
from
'./js/main'
;
//
import * as main from './js/main';
export
default
{
export
default
{
modernizr
,
//
modernizr,
velocity
,
//
velocity,
main
,
//
main,
};
};
</
script
>
</
script
>
...
...
src/pages/animated/services.vue
View file @
b65ecd7e
...
@@ -95,14 +95,14 @@
...
@@ -95,14 +95,14 @@
<
script
>
<
script
>
import
*
as
modernizr
from
'./js/modernizr'
;
//
import * as modernizr from './js/modernizr';
import
*
as
velocity
from
'./js/velocity'
;
//
import * as velocity from './js/velocity';
import
*
as
main
from
'./js/main'
;
//
import * as main from './js/main';
export
default
{
export
default
{
modernizr
,
//
modernizr,
velocity
,
//
velocity,
main
,
//
main,
};
};
</
script
>
</
script
>
...
...
src/pages/boss/projectDetails.vue
0 → 100644
View file @
b65ecd7e
<
template
>
<div>
</div>
</
template
>
<
script
>
export
default
{
}
</
script
>
<
style
>
</
style
>
\ No newline at end of file
src/pages/set/pwd.vue
View file @
b65ecd7e
<
template
>
<
template
>
<div>
修改密码
</div>
<div
class=
"pwdBox"
>
<div
class=
"pwdMainBox"
>
<el-card
class=
"box-card"
>
<h3
class=
"changepwd"
>
修改密码
</h3>
<el-divider></el-divider>
<el-form
ref=
"form"
label-width=
"100px"
class=
"pwdForm"
>
<el-form-item
label=
"用户名:"
>
<el-descriptions-item
v-model=
"uName"
></el-descriptions-item>
</el-form-item>
<el-form-item
label=
"密码:"
>
<el-input
size=
"mini"
style=
"width:400px"
placeholder=
"请输入密码"
v-model=
"password"
></el-input>
</el-form-item>
<el-form-item
label=
"确认密码:"
>
<el-input
size=
"mini"
style=
"width:400px"
placeholder=
"请确认密码"
v-model=
"newPassword"
></el-input>
</el-form-item>
</el-form>
<el-divider></el-divider>
<div
class=
"pwdButtonBox"
>
<el-button
class=
"pull-left"
>
取 消
</el-button>
<el-button
type=
"primary"
class=
"pull-right"
>
确 认
</el-button>
</div>
</el-card>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
uName
:
""
,
password
:
""
,
newPassword
:
""
,
}
}
},
},
components
:
{
},
components
:
{
},
...
@@ -17,5 +42,44 @@ export default {
...
@@ -17,5 +42,44 @@ export default {
</
script
>
</
script
>
<
style
>
<
style
>
.pwdBox
{
width
:
100%
;
}
.pwdBox
.pwdMainBox
{
width
:
50%
;
}
.pwdBox
.pwdMainBox
.el-card
{
box-shadow
:
0
2px
12px
0
rgba
(
252
,
252
,
252
,
0.144
);
background-color
:
rgb
(
255
255
255
/
15%
);
border-radius
:
6px
;
}
.pwdBox
.pwdMainBox
.el-form-item__label
{
color
:
aliceblue
;
font-size
:
16px
;
}
.pwdBox
.pwdMainBox
.pwdButtonBox
{
width
:
95%
;
height
:
40px
;
text-align
:
center
;
}
.changepwd
{
color
:
#fff
;
}
.pwdForm
{
margin
:
20px
0
;
}
.pull-right
{
width
:
100px
;
float
:
right
;
}
.pull-left
{
width
:
100px
;
float
:
left
;
}
</
style
>
</
style
>
\ No newline at end of file
src/router/index.js
View file @
b65ecd7e
...
@@ -58,6 +58,7 @@ export default new Router({
...
@@ -58,6 +58,7 @@ export default new Router({
children
:
[
children
:
[
{
path
:
'createProject'
,
name
:
'createProject'
,
component
:
()
=>
import
(
'../pages/boss/createProject.vue'
)},
{
path
:
'createProject'
,
name
:
'createProject'
,
component
:
()
=>
import
(
'../pages/boss/createProject.vue'
)},
{
path
:
'stats'
,
name
:
'stats'
,
component
:
()
=>
import
(
'../pages/boss/stats.vue'
)},
{
path
:
'stats'
,
name
:
'stats'
,
component
:
()
=>
import
(
'../pages/boss/stats.vue'
)},
{
path
:
'projectDetails'
,
name
:
'projectDetails'
,
component
:
()
=>
import
(
'../pages/boss/projectDetails.vue'
)},
]
]
},
},
...
...
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