From 6dc7610fe96788c97b5d363f58c383b8165356f9 Mon Sep 17 00:00:00 2001 From: yuanhao <yuanhao_2024> Date: 星期四, 05 六月 2025 13:39:11 +0800 Subject: [PATCH] fix: 文件字体修改 --- pages/aiQuestions/aiQuestions.vue | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pages/aiQuestions/aiQuestions.vue b/pages/aiQuestions/aiQuestions.vue index 00dece9..a547c14 100644 --- a/pages/aiQuestions/aiQuestions.vue +++ b/pages/aiQuestions/aiQuestions.vue @@ -65,7 +65,7 @@ <view class="file-list" v-if="item.docInfo.length&&item.isEnd"> <view class="one-file" @click="uploadFile(file)" v-for="(file,findex) in item.docInfo" :key='findex'> <image :src="getImg(file.docFormat)" mode=""></image> - <text>{{file.docName}}</text> + <text style="font-size: 26rpx;">{{file.docName}}</text> </view> </view> <view v-if="item.isEnd||item.logSound" class="u-flex u-p-h-10 function-box"> @@ -410,7 +410,6 @@ }, methods: { uploadFile(file) { - console.log(file.docPath); window.open(this.baseUrl + file.docPath) }, chooseThisLLM(e) { @@ -1573,7 +1572,7 @@ } text { - font-size: 30rpx; + font-size: 26rpx; color: #101828; line-height: 50rpx; font-weight: 400; -- Gitblit v1.9.1