diff --git a/src/project/qujing/AppMine/AppMine.vue b/src/project/qujing/AppMine/AppMine.vue index 6972f85..f01a285 100644 --- a/src/project/qujing/AppMine/AppMine.vue +++ b/src/project/qujing/AppMine/AppMine.vue @@ -25,16 +25,6 @@ -
-
-
-
- -
- 积分明细 -
-
-
- {{ item.label }} - + {{ item.label }}
@@ -66,17 +53,25 @@ export default { }, listGroup() { return [ + [ + { + icon: require('./img/jfmx.png'), + label: "积分明细", + path: "./integralInfo", + type: 'token' + }, + ], [ { icon: require('./img/xxjl.png'), label: "学习记录", - path: "./myFamily", + path: "./studyList", type: 'token' }, { icon: require('./img/ksjl.png'), label: "考试记录", - path: "/mods/AppHometown/AppHometown", + path: "./testList", type: 'token' }, { @@ -165,7 +160,7 @@ export default { .header-info { width: 100%; height: 100%; - background: url("./img/header-banner.png") no-repeat no-repeat; + // background: url("./img/header-banner.png") no-repeat no-repeat; background-size: 100% 100%; box-sizing: border-box; padding: 240px 0 0 48px; diff --git a/src/project/qujing/AppMine/integralInfo.vue b/src/project/qujing/AppMine/integralInfo.vue new file mode 100644 index 0000000..772e2ba --- /dev/null +++ b/src/project/qujing/AppMine/integralInfo.vue @@ -0,0 +1,41 @@ + + + diff --git a/src/project/qujing/AppMine/myFamily.vue b/src/project/qujing/AppMine/myFamily.vue deleted file mode 100644 index a544cf9..0000000 --- a/src/project/qujing/AppMine/myFamily.vue +++ /dev/null @@ -1,180 +0,0 @@ - - - diff --git a/src/project/qujing/AppMine/studyList.vue b/src/project/qujing/AppMine/studyList.vue new file mode 100644 index 0000000..4abb2a1 --- /dev/null +++ b/src/project/qujing/AppMine/studyList.vue @@ -0,0 +1,158 @@ + + + diff --git a/src/project/qujing/AppMine/testList.vue b/src/project/qujing/AppMine/testList.vue new file mode 100644 index 0000000..588d7cb --- /dev/null +++ b/src/project/qujing/AppMine/testList.vue @@ -0,0 +1,108 @@ + + + diff --git a/src/project/qujing/AppMine/userInfo.vue b/src/project/qujing/AppMine/userInfo.vue index 0b2f064..5ef2332 100644 --- a/src/project/qujing/AppMine/userInfo.vue +++ b/src/project/qujing/AppMine/userInfo.vue @@ -11,7 +11,7 @@

用户昵称

-

+

@@ -22,6 +22,20 @@
{{ user.phone || '' }}
+
+
+

姓名

+
{{ user.realName || '' }}
+
+
+

身份证号

+
{{ user.idNumber || '' }}
+
+
+

地区

+
{{ user.homeName || '' }}
+
+
@@ -48,6 +62,13 @@ export default { } }, onLoad() { + uni.setNavigationBarTitle({ + title: '个人中心' + }) + uni.setNavigationBarColor({ + frontColor: "#000000", + backgroundColor: "#F4F6FA", + }) this.getUserInfo() }, data() { @@ -105,14 +126,15 @@ export default { .page { width: 100%; - background-color: #F5F5F5; + background-color: #F4F5FA; .info-list { - margin: 0 0 16px 0; + padding: 50px 16px 0; .item-content { padding: 0 32px; background-color: #fff; + border-radius: 32px; } .item { @@ -122,15 +144,17 @@ export default { box-sizing: content-box; display: flex; justify-content: space-between; + font-size: 30px; p { - color: #333; - font-weight: 400; + font-family: PingFangSC-Regular; + color: #666; } div { - color: #666; - font-size: 28px; + font-family: PingFangSC-Medium; + font-weight: 500; + color: #333; } .user-img-div { @@ -156,12 +180,14 @@ export default { .mar-t22 { margin-top: 44px; } - } - .login-out { - width: 100%; - font-size: 30px; - text-align: center; + .login-out { + width: 100%; + font-size: 34px; + text-align: center; + font-family: PingFangSC-Regular; + color: #4181FF; + } } } @@ -218,5 +244,8 @@ export default { text-align: right; font-size: 28px; } + .solid { + border-bottom: 1px solid #eee; + } }