CZT
2023-09-04 c5e08335a81518a4ec2538d9e6e9e54538df97df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 全局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);
};
 
//页面中默认的组织仓库编码
var DEFAULT_DEPOTID = "0135";