- {{ userName }}
+ {{ customerName || userName }}
退出
@@ -43,7 +43,7 @@ export default {
},
computed: {
...mapState("user", [
- "title", "logoUrl", "avatar", "userName"
+ "title", "logoUrl", "avatar", "userName", 'customerName'
])
},
mounted() {
@@ -72,7 +72,7 @@ export default {
}).catch(err => {})
},
toPersonal() {
- this.$router.push("/setting/person");
+ this.customerName || this.$router.push("/setting/person")
},
toIndex() {
this.$refs.nav.jump({
@@ -106,7 +106,7 @@ $height: 64px;
.logo{
position: absolute;
top: 0;
- left: 80px;
+ left: 40px;
font-size: 28px;
color: #568DF2;
line-height: $height;
@@ -166,9 +166,6 @@ $height: 64px;
.inner {
padding-right: 20px;
}
- .logo {
- left: 40px;
- }
}
}
diff --git a/src/pages/account/login/index.vue b/src/pages/account/login/index.vue
index 7a21783..f7c2210 100644
--- a/src/pages/account/login/index.vue
+++ b/src/pages/account/login/index.vue
@@ -86,7 +86,7 @@
\ No newline at end of file
diff --git a/src/pages/record/list/practice.vue b/src/pages/record/list/practice.vue
index 7b4f23e..e72fa07 100644
--- a/src/pages/record/list/practice.vue
+++ b/src/pages/record/list/practice.vue
@@ -7,7 +7,7 @@
-
+
实验情况
diff --git a/src/pages/setting/person/index.vue b/src/pages/setting/person/index.vue
index 3ac04ea..f6330d6 100644
--- a/src/pages/setting/person/index.vue
+++ b/src/pages/setting/person/index.vue
@@ -81,9 +81,10 @@ export default {