123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="UTF-8">
- <title th:text="文件管理"></title>
- </head>
- <body>
- <div id="fileEdit"></div>
- <script type="text/javascript" src="http://47.94.222.6:9050/web-apps/apps/api/documents/api.js"></script>
- <script>
-
- new DocsAPI.DocEditor("fileEdit",
- {
- type: "desktop",
- width: "100%",
- height: "1000px",
- document: {
- title: "文档管理",
- url: "http://192.168.187.1:9999/ventanaly-sharefile/fileServer/onlyOffice/read?id=[[${id}]]",
- fileType:"docx",
- key: "",
- lang: "zh-CN",
- permissions: {
- "download": true,
- "edit": true,
- "fillForms": true,
- "print": true,
- }
- },
- editorConfig: {
- "lang": "zh-CN",
- mode: "edit",
- "callbackUrl": "http://192.168.187.1:9999/ventanaly-sharefile/fileServer/onlyOffice/save?id=[[${id}]]",
- "coEditing": {
- "mode": "fast",
- "change": true
- },
- "customization": {
- "toolbarNoTabs": true,
- "autosave": false,
- "forcesave": true,
- "hideRightMenu": true,
- },
-
- "user": {
- "id": "857857",
- "name": "小陈"
- }
- }
- });
- </script>
- </body>
- </html>
|