Files
ctms/frontend/public/onlyoffice-host.html
Cheng Zhou c68dddfc01
Client Quality Gates / Shared client and Web (push) Has been cancelled
Client Quality Gates / macOS Desktop (push) Has been cancelled
功能(文档预览):集成 ONLYOFFICE 安全只读预览与工作台体验
新增 ONLYOFFICE 配置签名、内部内容接口、容器编排与反向代理。

打通网页端和桌面端独立预览工作区,完善文档入口、布局及帮助体验。

补充桌面安全发布门禁、开发脚本、使用文档和前后端测试。
2026-07-14 14:19:17 +08:00

27 lines
573 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CTMS Office Preview</title>
<style>
html,
body,
#onlyoffice-editor {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
}
body {
background: #fff;
}
</style>
</head>
<body>
<div id="onlyoffice-editor" aria-label="Office 文档预览"></div>
<script src="/onlyoffice-host.js" defer></script>
</body>
</html>