diff --git a/scoring/manifest.json b/scoring/manifest.json
index cf9283f..2679956 100644
--- a/scoring/manifest.json
+++ b/scoring/manifest.json
@@ -50,7 +50,7 @@
"quickapp" : {},
/* 小程序特有相关 */
"mp-weixin" : {
- "appid" : "wx8b56b19d20dffe71",
+ "appid" : "wxf6c7436a3a34ce68",
"setting" : {
"urlCheck" : false
},
diff --git a/scoring/pages/my/my.vue b/scoring/pages/my/my.vue
index 480ea4d..5642de8 100644
--- a/scoring/pages/my/my.vue
+++ b/scoring/pages/my/my.vue
@@ -10,7 +10,7 @@
- {{userInfo.nickName}}
+ {{userInfo?.nickName}}
@@ -18,7 +18,7 @@
-
+
@@ -28,11 +28,33 @@
🎯
- 你好,{{userInfo.nickName}}
+ 你好,{{userInfo?.nickName}}
欢迎使用计分小程序
+
+
+
@@ -87,7 +109,7 @@ onMounted(() => {
}
.user-info {
- --user-height: 1000rpx; /* 增加整体高度确保内容不被遮挡 */
+ --user-height: 1500rpx; /* 增加整体高度确保内容不被遮挡 */
width: 750rpx;
height: var(--user-height);
background-color: #f5f5f5;
@@ -193,7 +215,7 @@ onMounted(() => {
box-sizing: border-box;
.welcome-card {
- background: rgba(255, 255, 255, 0.95);
+ background: rgba(255, 255, 255, 0.9);
border-radius: 24rpx;
padding: 40rpx 32rpx;
box-shadow: 0 12rpx 48rpx rgba(0, 0, 0, 0.1);
@@ -230,6 +252,46 @@ onMounted(() => {
}
}
}
+
+ /* 新增菜单区域样式 */
+ .menu-section {
+ margin-top: 60rpx;
+ width: 100%;
+ padding: 0 40rpx;
+ box-sizing: border-box;
+
+ .menu-list {
+ background: rgba(255, 255, 255, 0.95);
+ border-radius: 24rpx;
+ box-shadow: 0 12rpx 48rpx rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+ backdrop-filter: blur(10rpx);
+
+ .menu-item {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 32rpx 40rpx;
+ border-bottom: 1rpx solid rgba(0, 0, 0, 0.05);
+
+ &:last-child {
+ border-bottom: none;
+ }
+
+ .menu-text {
+ font-size: 32rpx;
+ color: #000000;
+ font-weight: 500;
+ }
+
+ .menu-arrow {
+ font-size: 40rpx;
+ color: #999999;
+ font-weight: 300;
+ }
+ }
+ }
+ }
}
}
}
@@ -248,7 +310,7 @@ onMounted(() => {
/* 响应式调整 */
@media (max-width: 750rpx) {
.user-info {
- --user-height: 560rpx;
+ --user-height: 800rpx; /* 增加高度以容纳菜单 */
}
}
\ No newline at end of file
diff --git a/scoring/pages/settle/index.vue b/scoring/pages/settle/index.vue
index d03c567..418abc9 100644
--- a/scoring/pages/settle/index.vue
+++ b/scoring/pages/settle/index.vue
@@ -41,6 +41,7 @@