本帖最后由 DerrickJiao 于 2020-12-8 16:51 编辑
您好,问题已复现,我们会做进一步调研,有进展第一时间在本帖更新,此贴改为保留处理。(SJS-6671)
经过调研,这是Element UI <el-dialog> 有关渲染的问题,对于SpreadJS来说也可能是一个限制,您可以使用以下代码确保工作簿的宿主能够被浏览器渲染
- maxDialogVisibleFn() {
- this.maxDialogVisible = true;
- if (this.spread2) {
- // Defer the callback to be executed after the next DOM update cycle, details: https://vuejs.org/v2/api/#Vue-nextTick
- this.$nextTick(function() {
- this.spread2.fromJSON( this.jsonStr, { includeBindingSource: true })
- this.spread2.options.scrollbarMaxAlign = true;
- });
- }
- }
复制代码
|