123456789101112131415161718192021222324252627282930313233 |
- define(function (require) {
- return function (context) {
- var $dlg;
- return {
- xtype: 'dialog',
- dialogId: 'dialogFugong',
- title: '复工查看',
- width: '400px',
- height: '550px',
- onOpen: function () {
- $dlg = $(this);
- },
- center: {
- items: {
- width: '100%',
- height: '100%',
- autoSizeColumns: true,
- xtype: 'iframe',
- src: '/whepi/user/returnWork.html?userId='+context.userId //在此用拼接参数的方式往下级页面传值
- }
- },
- buttons: [
- {
- text: "关闭", iconCls: "fa fa-times", onClick: function () {
- $dlg.dialog('close');
- }
- }
- ]
- }
- ;
- };
- });
|