fileModel.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="container">
  3. <div id="fileEdit"></div>
  4. </view>
  5. </template>
  6. <script>
  7. import configService from "../../common/service/config.service";
  8. export default {
  9. data() {
  10. return {
  11. editID: "", //文件ID
  12. fileType: "", //文件类型
  13. };
  14. },
  15. onLoad(data) {
  16. this.editID = data.id;
  17. this.fileType = data.fileSuffix.slice(1);
  18. this.initDocEditor();
  19. },
  20. methods: {
  21. initDocEditor() {
  22. new DocsAPI.DocEditor(
  23. "fileEdit", // 元素id
  24. {
  25. type: "desktop",
  26. width: "100%",
  27. height: "100%",
  28. document: {
  29. title: "文档管理",
  30. url:
  31. configService.apiUrl +
  32. ":9999/ventanaly-sharefile/fileServer/onlyOffice/read?id=" +
  33. this.editID, //id表示文件id,后端接口用这个id来加载文件
  34. // url: `${window.location.origin}:9999/ventanaly-sharefile/fileServer/onlyOffice/read?id=${this.editID}`, //id表示文件id,后端接口用这个id来加载文件
  35. fileType:
  36. this.fileType == "doc"
  37. ? "docx"
  38. : this.fileType == "xls"
  39. ? "xlsx"
  40. : this.fileType == "ppt"
  41. ? "pptx"
  42. : this.fileType, //当文件类型为doc、xls、ppt时,对应用docx、xlsx、pptx否则会保存异常。
  43. key: "",
  44. lang: "zh-CN",
  45. permissions: {
  46. download: true, //是否可下载
  47. edit: true,
  48. fillForms: true,
  49. print: true, //是否可打印
  50. },
  51. },
  52. }
  53. );
  54. },
  55. },
  56. };
  57. </script>
  58. <style scoped>
  59. ::v-deep .suffix {
  60. height: 32px;
  61. line-height: 32px;
  62. margin-left: 5px;
  63. color: #fff;
  64. }
  65. .main {
  66. /* margin-top: 100rpx; */
  67. margin-top: 80px;
  68. display: flex;
  69. flex-direction: column;
  70. margin-top: 80px; /* 内容区域顶部留出导航栏的高度 */
  71. }
  72. </style>