修改样式

This commit is contained in:
JACKYMYPERSON
2025-11-02 15:50:22 +08:00
parent 97dc115c7b
commit 8876b366f3
7 changed files with 33 additions and 31 deletions

View File

@@ -457,7 +457,7 @@ const handleCoverSuccess: UploadProps['onSuccess'] = (response) => {
};
const beforeCoverUpload: UploadProps['beforeUpload'] = (rawFile) => {
const isLt5M = rawFile.size / 1024 / 1024 < 5;
const isLt5M = rawFile.size / 1024 / 1024 < 15;
if (!isLt5M) {
ElMessage.error('图片大小不能超过 5MB!');
}