页面背景色作统一

This commit is contained in:
2026-09-23 18:43:51 +08:00
parent b008a414f0
commit 9ad38418c0
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ export default {
<style scoped> <style scoped>
.hd { .hd {
background: rgba(245, 247, 250, 0.94); background: #F5F7FA;
border-bottom: 1rpx solid rgba(17, 24, 39, 0.06); border-bottom: 1rpx solid rgba(17, 24, 39, 0.06);
position: sticky; position: sticky;
top: 0; top: 0;
+1 -1
View File
@@ -51,7 +51,7 @@
"color": "#8A9199", "color": "#8A9199",
"selectedColor": "#1677FF", "selectedColor": "#1677FF",
"backgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF",
"borderStyle": "white", "borderStyle": "black",
"list": [ "list": [
{ "pagePath": "pages/tabs/messages", "text": "消息", "iconPath": "static/tab/msg.png", "selectedIconPath": "static/tab/msg-on.png" }, { "pagePath": "pages/tabs/messages", "text": "消息", "iconPath": "static/tab/msg.png", "selectedIconPath": "static/tab/msg-on.png" },
{ "pagePath": "pages/tabs/contacts", "text": "通讯录", "iconPath": "static/tab/contacts.png", "selectedIconPath": "static/tab/contacts-on.png" }, { "pagePath": "pages/tabs/contacts", "text": "通讯录", "iconPath": "static/tab/contacts.png", "selectedIconPath": "static/tab/contacts-on.png" },
+4 -4
View File
@@ -145,19 +145,19 @@ export default {
</script> </script>
<style scoped> <style scoped>
.msg { display: flex; flex-direction: column; height: 100%; background: #fff; overflow: hidden; } .msg { display: flex; flex-direction: column; height: 100%; background: #F5F7FA; overflow: hidden; }
.finder { .finder {
margin: 8rpx 24rpx 12rpx; margin: 8rpx 24rpx 12rpx;
height: 56rpx; height: 56rpx;
border-radius: 12rpx; border-radius: 12rpx;
background: #F3F4F6; background: #fff;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
color: #9CA3AF; color: #9CA3AF;
} }
.finder-txt { margin-left: 8rpx; font-size: 26rpx; line-height: 1; } .finder-txt { margin-left: 8rpx; font-size: 26rpx; line-height: 1; }
.list { background: #fff; } .list { background: #F5F7FA; }
.ico.sm { font-size: 34rpx; color: #1677FF; } .ico.sm { font-size: 34rpx; color: #1677FF; }
.item { display: flex; align-items: center; padding: 22rpx 28rpx; background: #fff; } .item { display: flex; align-items: center; padding: 22rpx 28rpx; background: #fff; }
.item.pin { background: #F7F8FA; } .item.pin { background: #F7F8FA; }
@@ -176,6 +176,6 @@ export default {
.bot { display: flex; align-items: center; margin-top: 8rpx; } .bot { display: flex; align-items: center; margin-top: 8rpx; }
.prev { flex: 1; font-size: 24rpx; color: #6B7280; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .prev { flex: 1; font-size: 24rpx; color: #6B7280; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mute { font-size: 22rpx; margin-left: 8rpx; color: #9CA3AF; } .mute { font-size: 22rpx; margin-left: 8rpx; color: #9CA3AF; }
.empty { padding: 160rpx 40rpx; text-align: center; color: #6B7280; font-size: 28rpx; background: #fff; } .empty { padding: 160rpx 40rpx; text-align: center; color: #6B7280; font-size: 28rpx; background: transparent; }
.ico { font-size: 36rpx; color: #1677FF; padding: 8rpx 12rpx; } .ico { font-size: 36rpx; color: #1677FF; padding: 8rpx 12rpx; }
</style> </style>