file-viewer.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <div class="file-viewer">
  3. <el-dialog
  4. v-if="visible"
  5. width="360px"
  6. :show-close="false"
  7. :visible.sync="visible"
  8. :before-close="(_) => $emit('visible', false)"
  9. >
  10. <div class="content">
  11. <img class="file-icon" :src="fileIcon" alt="" />
  12. <div class="none-view">暂不支持预览此类型文件</div>
  13. <div class="tips" v-if="info.is_down">请尝试下载后使用其他应用打开</div>
  14. <div class="download" v-if="info.is_down" @click="download">
  15. 点击下载
  16. </div>
  17. </div>
  18. </el-dialog>
  19. </div>
  20. </template>
  21. <script>
  22. import { getFileIcon } from "@/common/util";
  23. import { DatumService } from "@/common/service";
  24. import { downloadLocalFile } from "@/common/request";
  25. export default {
  26. name: "FileViewer",
  27. props: {
  28. info: {
  29. type: Object,
  30. },
  31. visible: {
  32. type: Boolean,
  33. },
  34. },
  35. model: {
  36. prop: "visible",
  37. event: "visible",
  38. },
  39. computed: {
  40. fileIcon() {
  41. return getFileIcon(`${this.info.fileType}_bg`);
  42. },
  43. },
  44. methods: {
  45. download() {
  46. let url = this.info.url;
  47. if (this.info.is_down && this.info.is_encrypt) {
  48. url = OSS_URL + this.urlInfo.pdf_clear;
  49. }
  50. DatumService.datumDownload({
  51. datum_id: this.info.datum_id,
  52. url_id: this.info.id,
  53. }).then(() => {
  54. downloadLocalFile(url, this.info.title);
  55. });
  56. },
  57. },
  58. };
  59. </script>
  60. <style lang="scss" scoped>
  61. .file-viewer {
  62. ::v-deep .el-dialog__header {
  63. display: none;
  64. }
  65. ::v-deep .el-dialog {
  66. border-radius: 10px;
  67. }
  68. }
  69. .content {
  70. height: 260px;
  71. display: flex;
  72. flex-direction: column;
  73. align-items: center;
  74. justify-content: space-around;
  75. .file-icon {
  76. width: 85px;
  77. height: 85px;
  78. }
  79. .none-view {
  80. font-size: 16px;
  81. font-weight: 400;
  82. color: #333333;
  83. }
  84. .tips {
  85. font-size: 12px;
  86. font-weight: 400;
  87. color: #999999;
  88. }
  89. .download {
  90. width: 160px;
  91. height: 45px;
  92. background: #ffffff;
  93. border-radius: 22px;
  94. border: 1px solid #2a63f3;
  95. text-align: center;
  96. line-height: 45px;
  97. font-size: 16px;
  98. font-weight: 400;
  99. color: #2a63f3;
  100. }
  101. }
  102. </style>