Commit b65ecd7e by 孙香冬

no message

parent 3c1d90f7
...@@ -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>
......
...@@ -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>
......
...@@ -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>
......
...@@ -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>
......
<template>
<div>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
\ No newline at end of file
<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
...@@ -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')},
] ]
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment