diff --git a/src/components/upload/upload-list.vue b/src/components/upload/upload-list.vue index c03cd74..dafc005 100644 --- a/src/components/upload/upload-list.vue +++ b/src/components/upload/upload-list.vue @@ -8,7 +8,7 @@ {{ file.name }} @@ -63,10 +63,10 @@ }, format (file) { const format = file.name.split('.').pop().toLocaleLowerCase() || ''; - let type = 'document'; + let type = 'ios-document-outline'; if (['gif','jpg','jpeg','png','bmp','webp'].indexOf(format) > -1) { - type = 'image'; + type = 'ios-image'; } if (['mp4','m3u8','rmvb','avi','swf','3gp','mkv','flv'].indexOf(format) > -1) { type = 'ios-film'; @@ -75,10 +75,10 @@ type = 'ios-musical-notes'; } if (['doc','txt','docx','pages','epub','pdf'].indexOf(format) > -1) { - type = 'document-text'; + type = 'md-document'; } if (['numbers','csv','xls','xlsx'].indexOf(format) > -1) { - type = 'stats-bars'; + type = 'ios-stats'; } if (['keynote','ppt','pptx'].indexOf(format) > -1) { type = 'ios-videocam'; -- libgit2 0.21.4