|
|
@ -10,9 +10,13 @@ |
|
|
|
|
|
|
|
|
|
|
|
// 防抖机制,0.3s无新的data请求,才向后端发送。否则会先打包并等待0.3s
|
|
|
|
// 防抖机制,0.3s无新的data请求,才向后端发送。否则会先打包并等待0.3s
|
|
|
|
var requestFunc = BI.debounce(function () { |
|
|
|
var requestFunc = BI.debounce(function () { |
|
|
|
BI.reqPost("plugin/design/widgets/data", { |
|
|
|
BI.asyncAjax({ |
|
|
|
|
|
|
|
url: "widgets/data", |
|
|
|
|
|
|
|
type: "POST", |
|
|
|
|
|
|
|
data: { |
|
|
|
widgets: widgets |
|
|
|
widgets: widgets |
|
|
|
}, function (res) { |
|
|
|
}, |
|
|
|
|
|
|
|
success: function (res) { |
|
|
|
BI.each(handlers, function (wId, handler) { |
|
|
|
BI.each(handlers, function (wId, handler) { |
|
|
|
handler.resolve({ |
|
|
|
handler.resolve({ |
|
|
|
config: config, |
|
|
|
config: config, |
|
|
@ -22,6 +26,10 @@ |
|
|
|
response: BI.jsonEncode(res.data[wId]) |
|
|
|
response: BI.jsonEncode(res.data[wId]) |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
complete: BI.emptyFn, |
|
|
|
|
|
|
|
opt: {}, |
|
|
|
|
|
|
|
version: "url" |
|
|
|
}); |
|
|
|
}); |
|
|
|
widgets = {}; |
|
|
|
widgets = {}; |
|
|
|
handlers = {}; |
|
|
|
handlers = {}; |
|
|
|