| | |
| | | <!-- <docx previewSrc="http://192.168.20.116:1080/v1/document/get/405c3efa4d8c11ef97560242ac120006"></docx>--> |
| | | <docx v-if="documenttype == 'docx'" :previewSrc="previewSrc"></docx> |
| | | <excel v-if="documenttype == 'excel'" :previewSrc="previewSrc"></excel> |
| | | <txtPdf v-if="documenttype == 'txtPdf'" :previewSrc="previewSrc"></txtPdf> |
| | | <Pdf v-if="documenttype == 'pdf'" :previewSrc="previewSrc"></Pdf> |
| | | <txt v-if="documenttype == 'txt'" :previewSrc="previewSrc"></txt> |
| | | </a-modal> |
| | | <a-modal |
| | | v-model:visible="visible" |
| | |
| | | |
| | | import docx from '@/views/dmx/knowledgeLib/components/docx.vue'; |
| | | import excel from '@/views/dmx/knowledgeLib/components/excel.vue'; |
| | | import txtPdf from '@/views/dmx/knowledgeLib/components/txtPdf.vue'; |
| | | import Pdf from '@/views/dmx/knowledgeLib/components/Pdf.vue'; |
| | | import txt from '@/views/dmx/knowledgeLib/components/txt.vue'; |
| | | import { is } from 'immutable'; |
| | | import uploadFile from './components/uploadFile.vue'; |
| | | |