hookehuyr

fix(上传组件): 限制音频上传格式为mp3,wav,aac

1 <!-- 1 <!--
2 * @Date: 2025-06-03 09:41:41 2 * @Date: 2025-06-03 09:41:41
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-06-06 21:17:15 4 + * @LastEditTime: 2025-06-13 14:34:57
5 * @FilePath: /mlaj/src/views/checkin/upload/audio.vue 5 * @FilePath: /mlaj/src/views/checkin/upload/audio.vue
6 * @Description: 音视频文件上传组件 6 * @Description: 音视频文件上传组件
7 --> 7 -->
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
17 :after-read="afterRead" 17 :after-read="afterRead"
18 @delete="onDelete" 18 @delete="onDelete"
19 multiple 19 multiple
20 - accept="audio/*" 20 + accept=".mp3,.wav,.aac"
21 result-type="file" 21 result-type="file"
22 upload-icon="plus" 22 upload-icon="plus"
23 :deletable="false" 23 :deletable="false"
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
29 </van-row> 29 </van-row>
30 <van-divider /> 30 <van-divider />
31 <div class="mt-2 text-xs text-gray-500">最多上传{{ max_count }}个文件,每个不超过20M</div> 31 <div class="mt-2 text-xs text-gray-500">最多上传{{ max_count }}个文件,每个不超过20M</div>
32 - <div class="mt-2 text-xs text-gray-500">上传类型:&nbsp;音频文件</div> 32 + <div class="mt-2 text-xs text-gray-500">上传类型:&nbsp;.mp3,.wav,.aac 格式音频文件</div>
33 </div> 33 </div>
34 34
35 <!-- 文字留言区域 --> 35 <!-- 文字留言区域 -->
......