From 94bcbfd264e5cd058641163a3027f0f418633404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Wed, 10 Sep 2025 09:20:23 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- src/pages/index/components/history.vue | 188 +++++++++++++------------ 2 files changed, 97 insertions(+), 93 deletions(-) diff --git a/.env.development b/.env.development index 1ff2639c..dccfa655 100644 --- a/.env.development +++ b/.env.development @@ -31,7 +31,7 @@ VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001' # VITE_APP_BASE_H5_API_Url = 'http://25.18.122.78:9786' # 任东 -# VITE_APP_BASE_H5_API_Url_TRAAPP = 'http://25.64.16.130:9601' +VITE_APP_BASE_H5_API_Url_TRAAPP = 'http://25.64.16.130:9601' VITE_APP_BASE_H5_API_Url_TRASTUDY = 'http://25.64.16.130:9602' # VITE_APP_BASE_H5_API_Url_TRAEXAM = 'http://25.64.16.140:9604' diff --git a/src/pages/index/components/history.vue b/src/pages/index/components/history.vue index 16694b17..3167c9b5 100644 --- a/src/pages/index/components/history.vue +++ b/src/pages/index/components/history.vue @@ -1,99 +1,103 @@ \ No newline at end of file +.history-popup-view { + width: 582rpx; + height: 100vh; + background-color: #fff; + padding: 40rpx; + padding-top: calc(20rpx + var(--status-bar-height)); + .history-title { + height: 40rpx; + line-height: 40rpx; + padding-left: 40rpx; + position: relative; + font-size: 29rpx; + color: #000; + margin-bottom: 20rpx; + .icon-image { + position: absolute; + left: 0; + height: 32rpx; + width: 32rpx; + top: 4rpx; + } + } + .history-list { + height: calc(100% - 60rpx); + .history-item { + height: 78rpx; + line-height: 78rpx; + font-size: 28rpx; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + } + } +} +