18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
|
var thisWidget;
|
|||
|
|
|||
|
//当前页面业务
|
|||
|
function initWidgetView(_thisWidget) {
|
|||
|
thisWidget = _thisWidget;
|
|||
|
|
|||
|
if (thisWidget.config && thisWidget.config.style) {//适应不同样式
|
|||
|
$("body").addClass(thisWidget.config.style);
|
|||
|
}
|
|||
|
|
|||
|
//测试:调用了【index页面对应widg.js】 中的方法
|
|||
|
thisWidget.testFun();
|
|||
|
}
|
|||
|
|
|||
|
//测试
|
|||
|
function testIframeFun() {
|
|||
|
toastr.error('我是弹窗中的方法');
|
|||
|
}
|