Compare commits
No commits in common. "4164b24bd951cb48d72642ce110d3a2adafa9c48" and "0de49faed1eb8f988d1b60a7ba1a3a10bef39882" have entirely different histories.
4164b24bd9
...
0de49faed1
|
@ -835,7 +835,6 @@ 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;
|
||||||
|
|
|
@ -832,7 +832,6 @@ 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;
|
||||||
|
|
|
@ -794,7 +794,6 @@ 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;
|
||||||
|
|
|
@ -928,7 +928,6 @@ 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;
|
||||||
|
|
|
@ -260,9 +260,7 @@ export default {
|
||||||
type: extendName.split('.')[1],
|
type: extendName.split('.')[1],
|
||||||
status: 0,
|
status: 0,
|
||||||
file: files[i],
|
file: files[i],
|
||||||
id: `${files[i].lastModified}${
|
id: `${files[i].lastModified}${files[i].name}`,
|
||||||
files[i].name
|
|
||||||
}${new Date().getTime()}${i + 1}`,
|
|
||||||
fileType: files[i].type,
|
fileType: files[i].type,
|
||||||
uploadFileSize: 0,
|
uploadFileSize: 0,
|
||||||
}
|
}
|
||||||
|
|
|
@ -958,9 +958,7 @@ export default {
|
||||||
type: extendName.split('.')[1],
|
type: extendName.split('.')[1],
|
||||||
status: 0,
|
status: 0,
|
||||||
file: files[i],
|
file: files[i],
|
||||||
id: `${files[i].lastModified}${
|
id: `${files[i].lastModified}${files[i].name}`,
|
||||||
files[i].name
|
|
||||||
}${new Date().getTime()}${i + 1}`,
|
|
||||||
fileType: files[i].type,
|
fileType: files[i].type,
|
||||||
uploadFileSize: 0,
|
uploadFileSize: 0,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue