hookehuyr

style(UploadMedia): 调整上传页面按钮和提示文字样式

...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
12 <view class="text-gray-400 mb-4"> 12 <view class="text-gray-400 mb-4">
13 <Photograph size="48" /> 13 <Photograph size="48" />
14 </view> 14 </view>
15 - <view class="text-center text-gray-600 mb-2">选择图片或视频</view> 15 + <view class="text-center text-gray-600 mb-2 text-sm">选择图片或视频</view>
16 <view class="text-center text-gray-400 text-sm"> 16 <view class="text-center text-gray-400 text-sm">
17 支持图片格式(jpg、png)最大10MB或60秒内视频 17 支持图片格式(jpg、png)最大10MB或60秒内视频
18 </view> 18 </view>
...@@ -75,14 +75,14 @@ ...@@ -75,14 +75,14 @@
75 <view class="flex gap-3"> 75 <view class="flex gap-3">
76 <view 76 <view
77 @tap="chooseMedia" 77 @tap="chooseMedia"
78 - class="flex-1 bg-gray-100 text-gray-700 py-3 rounded-lg text-center" 78 + class="flex-1 bg-gray-100 text-gray-700 py-3 rounded-lg text-center text-sm"
79 > 79 >
80 {{ uploadedFile ? '重新选择' : '选择文件' }} 80 {{ uploadedFile ? '重新选择' : '选择文件' }}
81 </view> 81 </view>
82 <view 82 <view
83 v-if="uploadedFile" 83 v-if="uploadedFile"
84 @tap="saveMedia" 84 @tap="saveMedia"
85 - class="flex-1 bg-blue-500 text-white py-3 rounded-lg text-center" 85 + class="flex-1 bg-blue-500 text-white py-3 rounded-lg text-center text-sm"
86 > 86 >
87 提交 87 提交
88 </view> 88 </view>
......