amis2/examples/components/OfficeViewer.jsx
吴多益 4b8dd7a9ca
feat: Office Viewer 支持 Excel (#9826)
* feat: Office viewer 支持 Excel

* 修复类型报错

* 修复类型报错
2024-03-20 11:08:43 +08:00

26 lines
495 B
JavaScript

export default {
type: 'page',
body: {
type: 'form',
title: '',
wrapWithPanel: false,
body: [
{
type: 'input-file',
name: 'file',
label: '选择 Docx/Excel 文件预览效果(不会上传到服务器)',
asBlob: true,
accept: '.docx,.xlsx,.csv,.tsv'
},
{
type: 'office-viewer',
id: 'office-viewer',
name: 'file',
excelOptions: {
height: 500
}
}
]
}
};