Ext 模块套用iframe,配合使用;

/****************************************************************
* 文件名: TemperatureBigDataDisplayPlatform.js
* 作者:  leos
* 文件创建时间: 2020.02.27
* 文件描述: xxx统计图    
***************************************************************/
Ext.define('xxx.xxx.TemperatureBigDataDisplayPlatform', {
    extend: 'Ext.panel.Panel',
    requires: [
        'Ext.selection.CheckboxModel',
        'Ext.grid.RowNumberer'
    ],
    layout: { type: 'vbox', align: 'center', pack: 'center' },
    autoScroll: true,
    border: false,

    initComponent: function () {
        var me = this;
        //var url = "http://" + window.location.host + "/xx/xx/xx/index.html"
        var url = "https://www.baidu.com/";
        me.items = [
           {
               xtype: 'panel',
               region: 'center',
               layout: 'fit',
               autoScroll: true,
               html: '<iframe frameborder="0" scrolling="0" src="' + url + '" style="width:100%;height:100%;position:absolute" id="CZ"></iframe>',
           }
        ]
        me.callParent(arguments);
    }
});



 

Ext 模块套用iframe,配合使用;Ext 模块套用iframe,配合使用; leos~~ 发布了23 篇原创文章 · 获赞 15 · 访问量 2万+ 私信 关注
上一篇:处理末尾空格


下一篇:文件上传之后端黑白名单绕过