Compare commits

...

2 Commits

Author SHA1 Message Date
wangxiaoshuang 4164b24bd9 Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
continuous-integration/drone/push Build is passing Details
2025-03-11 11:41:49 +08:00
wangxiaoshuang 49b723ab01 上传同名文件时进度条出错 2025-03-11 11:41:30 +08:00
6 changed files with 10 additions and 2 deletions

View File

@ -835,6 +835,7 @@ export default {
white-space: nowrap; /* 文本不换行 */ white-space: nowrap; /* 文本不换行 */
overflow: hidden; /* 超出部分隐藏 */ overflow: hidden; /* 超出部分隐藏 */
text-overflow: ellipsis; text-overflow: ellipsis;
margin-right: 3px;
} }
.fileBtnBox { .fileBtnBox {
display: inline-block; display: inline-block;

View File

@ -832,6 +832,7 @@ export default {
white-space: nowrap; /* 文本不换行 */ white-space: nowrap; /* 文本不换行 */
overflow: hidden; /* 超出部分隐藏 */ overflow: hidden; /* 超出部分隐藏 */
text-overflow: ellipsis; text-overflow: ellipsis;
margin-right: 3px;
} }
.fileBtnBox { .fileBtnBox {
display: inline-block; display: inline-block;

View File

@ -794,6 +794,7 @@ export default {
white-space: nowrap; /* 文本不换行 */ white-space: nowrap; /* 文本不换行 */
overflow: hidden; /* 超出部分隐藏 */ overflow: hidden; /* 超出部分隐藏 */
text-overflow: ellipsis; text-overflow: ellipsis;
margin-right: 3px;
} }
.fileBtnBox { .fileBtnBox {
display: inline-block; display: inline-block;

View File

@ -928,6 +928,7 @@ export default {
white-space: nowrap; /* 文本不换行 */ white-space: nowrap; /* 文本不换行 */
overflow: hidden; /* 超出部分隐藏 */ overflow: hidden; /* 超出部分隐藏 */
text-overflow: ellipsis; text-overflow: ellipsis;
margin-right: 3px;
} }
.fileBtnBox { .fileBtnBox {
display: inline-block; display: inline-block;

View File

@ -260,7 +260,9 @@ export default {
type: extendName.split('.')[1], type: extendName.split('.')[1],
status: 0, status: 0,
file: files[i], file: files[i],
id: `${files[i].lastModified}${files[i].name}`, id: `${files[i].lastModified}${
files[i].name
}${new Date().getTime()}${i + 1}`,
fileType: files[i].type, fileType: files[i].type,
uploadFileSize: 0, uploadFileSize: 0,
} }

View File

@ -958,7 +958,9 @@ export default {
type: extendName.split('.')[1], type: extendName.split('.')[1],
status: 0, status: 0,
file: files[i], file: files[i],
id: `${files[i].lastModified}${files[i].name}`, id: `${files[i].lastModified}${
files[i].name
}${new Date().getTime()}${i + 1}`,
fileType: files[i].type, fileType: files[i].type,
uploadFileSize: 0, uploadFileSize: 0,
} }