diff --git a/src/assets/css/index.css b/src/assets/css/index.css
index b14a51d024fa4ff8764451eed403e744e5dd7ac6..93fca1c7990006f7079b2cfd16124433428651c3 100644
--- a/src/assets/css/index.css
+++ b/src/assets/css/index.css
@@ -190,8 +190,12 @@ div{
.el-dialog{
border-radius: 10px;
}
+.el-dialog__header {
+ border-bottom: 1px solid #edf0ff;
+}
.el-dialog__title{
font-size: 16px;
+ font-weight: 700;
color: #1d1e20;
border-left: 4px solid #0367f6;
padding-left: 8px;
diff --git a/src/components/cropper.vue b/src/components/cropper.vue
index cbe5a479331ad7367c69aa8c34be065a0ebd0023..4d11f723317658c274adec8e24f710d6f5a131d8 100644
--- a/src/components/cropper.vue
+++ b/src/components/cropper.vue
@@ -54,8 +54,8 @@
diff --git a/src/pages/user/user_info.vue b/src/pages/user/user_info.vue
index cc43a10e1f5f72a864c6bb4bf3315e4fed65f535..b000cc958c7391a2f2609d97845bd2456acb71e5 100644
--- a/src/pages/user/user_info.vue
+++ b/src/pages/user/user_info.vue
@@ -10,19 +10,20 @@
-
+
账号:
-
+
密码:
+ 修改密码
-
+
昵称:
-
+
头像:
-
+
联系人:
-
+
手机号:
-
+
邮箱:
-
+
组织机构:
-
+
当前角色:
+ 升级为开发者
+
+
+
+
+
+ 旧密码:
+
+
+
+ 新密码:
+
+
+
+ 请再次输入密码:
+
+
+
+
+
+
@@ -78,21 +111,102 @@ export default {
organization: "",
role: ""
},
- imgList: []
+ imgList: [],
+ diaPassWord: false
}),
mounted() {
- this.imgList.push("https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg")
+ this.imgList.push(
+ "https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg"
+ );
},
methods: {
changeTab() {},
getNewList(val) {
console.log(val);
+ },
+ previous() {},
+ registe() {},
+ changePassword() {
+ this.diaPassWord = true;
+ },
+ cancelChangePwd() {
+ this.diaPassWord = false;
+ },
+ submitChangePwd() {},
+ upLevel() {
+ this.diaPassWord = true;
}
}
};
+
\ No newline at end of file
diff --git a/src/request/http.js b/src/request/http.js
index f308240c4c63bf50ca7a940b4e4645e0b6f61860..fe75f2ca0e1592dfe11f4d418c8e8edd7575849c 100644
--- a/src/request/http.js
+++ b/src/request/http.js
@@ -18,12 +18,7 @@ const tip = msg => {
* 登录用 bg-login ,具体链接晚几天加
*/
const toLogin = () => {
- router.replace({
- path: '/login',
- query: {
- redirect: router.currentRoute.fullPath
- }
- });
+ window.location.href = "/login?redirect=" + router.currentRoute.fullPath
}
/**