Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
lls_program
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-09-12 14:07:03 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
22991e72015b4e8bcbb3b9622ea8b14f9c15e7ca
22991e72
1 parent
cfc52bd4
fix(UploadMedia): 将文件大小超限提示的图标从error改为none
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/pages/UploadMedia/index.vue
src/pages/UploadMedia/index.vue
View file @
22991e7
...
...
@@ -204,7 +204,7 @@ const chooseMedia = () => {
if (file.size > 10 * 1024 * 1024) {
Taro.showToast({
title: '文件大小不能超过10MB',
icon: '
error
',
icon: '
none
',
duration: 2000
});
return;
...
...
Please
register
or
login
to post a comment