Browse Source

支持XML类型预览

master
han\hanst 4 weeks ago
parent
commit
c7df918b87
  1. 5
      src/views/modules/erf/components/erfAttachmentManager.vue

5
src/views/modules/erf/components/erfAttachmentManager.vue

@ -422,6 +422,11 @@ export default {
type = 'text/plain;charset=utf-8'
}
// XML
if (fileType === 'xml') {
type = 'application/xml;charset=utf-8'
}
// Excel
if (fileType === 'xlsx' || fileType === 'xls') {
type = 'excel'

Loading…
Cancel
Save