Commit 6ca23d20 authored by 罗超's avatar 罗超

1

parent 63cbcbe9
...@@ -12,7 +12,7 @@ export default { ...@@ -12,7 +12,7 @@ export default {
<style> <style>
@import url("~assets/css/font.css"); @import url("~assets/css/font.css");
@import url("//at.alicdn.com/t/font_2077629_9tmhtn2zdwi.css"); @import url("//at.alicdn.com/t/font_2077629_204ipdftgho.css");
.q-scrollarea__thumb { .q-scrollarea__thumb {
z-index: 999999 !important; z-index: 999999 !important;
} }
......
...@@ -189,7 +189,8 @@ ...@@ -189,7 +189,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -407,6 +408,8 @@ ...@@ -407,6 +408,8 @@
? 'icon-pdf' ? 'icon-pdf'
: item.suffix == 'TXT' : item.suffix == 'TXT'
? 'icon-txt' ? 'icon-txt'
: item.suffix == 'DOCX' || item.suffix == 'DOC'
? 'icon-WORD'
: 'icon-excel' : 'icon-excel'
" "
></span> ></span>
......
...@@ -80,7 +80,8 @@ ...@@ -80,7 +80,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -220,6 +221,15 @@ ...@@ -220,6 +221,15 @@
file.Content.length file.Content.length
).toUpperCase() == 'TXT' ).toUpperCase() == 'TXT'
? 'icon-txt' ? 'icon-txt'
: file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOCX' ||
file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
@click="showUpLoadFile(file)" @click="showUpLoadFile(file)"
......
...@@ -160,7 +160,8 @@ ...@@ -160,7 +160,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -592,6 +593,8 @@ ...@@ -592,6 +593,8 @@
? 'icon-pdf' ? 'icon-pdf'
: item.suffix == 'TXT' : item.suffix == 'TXT'
? 'icon-txt' ? 'icon-txt'
: item.suffix == 'DOCX' || item.suffix == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
></span> ></span>
......
...@@ -160,7 +160,8 @@ ...@@ -160,7 +160,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -315,6 +316,8 @@ ...@@ -315,6 +316,8 @@
? 'icon-pdf' ? 'icon-pdf'
: item.suffix == 'TXT' : item.suffix == 'TXT'
? 'icon-txt' ? 'icon-txt'
: item.suffix == 'DOCX' || item.suffix == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
></span> ></span>
......
...@@ -190,7 +190,8 @@ ...@@ -190,7 +190,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -428,6 +429,8 @@ ...@@ -428,6 +429,8 @@
? 'icon-pdf' ? 'icon-pdf'
: item.suffix == 'TXT' : item.suffix == 'TXT'
? 'icon-txt' ? 'icon-txt'
: item.suffix == 'DOCX' || item.suffix == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
></span> ></span>
......
...@@ -190,7 +190,8 @@ ...@@ -190,7 +190,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -388,6 +389,8 @@ ...@@ -388,6 +389,8 @@
? 'icon-pdf' ? 'icon-pdf'
: item.suffix == 'TXT' : item.suffix == 'TXT'
? 'icon-txt' ? 'icon-txt'
: item.suffix == 'DOCX' || item.suffix == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
></span> ></span>
......
...@@ -164,7 +164,8 @@ ...@@ -164,7 +164,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -394,6 +395,15 @@ ...@@ -394,6 +395,15 @@
file.Content.length file.Content.length
).toUpperCase() == 'TXT' ).toUpperCase() == 'TXT'
? 'icon-txt' ? 'icon-txt'
: file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOCX' ||
file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
@click="showUpLoadFile(file)" @click="showUpLoadFile(file)"
......
...@@ -112,7 +112,8 @@ ...@@ -112,7 +112,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -935,6 +936,15 @@ ...@@ -935,6 +936,15 @@
file.Content.length file.Content.length
).toUpperCase() == 'TXT' ).toUpperCase() == 'TXT'
? 'icon-txt' ? 'icon-txt'
: file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOCX' ||
file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
@click="showUpLoadFile(file)" @click="showUpLoadFile(file)"
......
...@@ -112,7 +112,8 @@ ...@@ -112,7 +112,8 @@
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
...@@ -325,6 +326,15 @@ ...@@ -325,6 +326,15 @@
file.Content.length file.Content.length
).toUpperCase() == 'TXT' ).toUpperCase() == 'TXT'
? 'icon-txt' ? 'icon-txt'
: file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOCX' ||
file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
@click="showUpLoadFile(file)" @click="showUpLoadFile(file)"
......
...@@ -71,6 +71,15 @@ ...@@ -71,6 +71,15 @@
file.Content.length file.Content.length
).toUpperCase() == 'TXT' ).toUpperCase() == 'TXT'
? 'icon-txt' ? 'icon-txt'
: file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOCX' ||
file.Content.substring(
file.Content.lastIndexOf('.') + 1,
file.Content.length
).toUpperCase() == 'DOC'
? 'icon-word'
: 'icon-excel' : 'icon-excel'
" "
@click="showUpLoadFile(file)" @click="showUpLoadFile(file)"
...@@ -427,7 +436,8 @@ export default { ...@@ -427,7 +436,8 @@ export default {
._addUpload_box .icon-txt, ._addUpload_box .icon-txt,
._addUpload_box .icon-wenjian, ._addUpload_box .icon-wenjian,
._addUpload_box .icon-yasuobao, ._addUpload_box .icon-yasuobao,
._addUpload_box .icon-shipin { ._addUpload_box .icon-shipin,
._addUpload_box .icon-word {
text-align: center; text-align: center;
font-size: 38px; font-size: 38px;
color: green; color: green;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment