Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4164b24bd9 | |||
| 49b723ab01 |
+1
@@ -835,6 +835,7 @@ export default {
|
||||
white-space: nowrap; /* 文本不换行 */
|
||||
overflow: hidden; /* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.fileBtnBox {
|
||||
display: inline-block;
|
||||
|
||||
+1
@@ -832,6 +832,7 @@ export default {
|
||||
white-space: nowrap; /* 文本不换行 */
|
||||
overflow: hidden; /* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.fileBtnBox {
|
||||
display: inline-block;
|
||||
|
||||
+1
@@ -794,6 +794,7 @@ export default {
|
||||
white-space: nowrap; /* 文本不换行 */
|
||||
overflow: hidden; /* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.fileBtnBox {
|
||||
display: inline-block;
|
||||
|
||||
+1
@@ -928,6 +928,7 @@ export default {
|
||||
white-space: nowrap; /* 文本不换行 */
|
||||
overflow: hidden; /* 超出部分隐藏 */
|
||||
text-overflow: ellipsis;
|
||||
margin-right: 3px;
|
||||
}
|
||||
.fileBtnBox {
|
||||
display: inline-block;
|
||||
|
||||
+3
-1
@@ -260,7 +260,9 @@ export default {
|
||||
type: extendName.split('.')[1],
|
||||
status: 0,
|
||||
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,
|
||||
uploadFileSize: 0,
|
||||
}
|
||||
|
||||
@@ -958,7 +958,9 @@ export default {
|
||||
type: extendName.split('.')[1],
|
||||
status: 0,
|
||||
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,
|
||||
uploadFileSize: 0,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user