jiazx0107
2025-11-18 b0bf6e809ec4990ca8e3de95456c90860e49e2a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 全局JS每个View.xml文件都自动引入 //
window.$alert = function (msg) {
    dorado.MessageBox.alert(msg);
};
 
window.$confirm = function (msg, action) {
    dorado.MessageBox.confirm(msg, action);
};
 
window.$notify = function (msg) {
    dorado.widget.NotifyTipManager.notify(msg);
};
 
 
window.$openTab = function (name,url) {
    var panelId = window.frameElement.getAttribute('data-id');
    window.parent.$.modal.openTab(name, url, false, panelId);
};