29 lines
719 B
JavaScript
29 lines
719 B
JavaScript
|
|
var QueryCond = {
|
|||
|
|
Equal: 0,
|
|||
|
|
Like: 1,
|
|||
|
|
GreaterThan: 2,
|
|||
|
|
GreaterThanOrEqual: 3,
|
|||
|
|
LessThan: 4,
|
|||
|
|
LessThanOrEqual: 5,
|
|||
|
|
In: 6,
|
|||
|
|
NotIn: 7,
|
|||
|
|
LikeLeft: 8,
|
|||
|
|
LikeRight: 9,
|
|||
|
|
NoEqual: 10,
|
|||
|
|
IsNullOrEmpty: 11,
|
|||
|
|
IsNot: 12
|
|||
|
|
};
|
|||
|
|
var AccountType, StatusType, AdStatus, DeviceStatus, DeviceNetStatus;
|
|||
|
|
|
|||
|
|
layui.use(['common'], function () {
|
|||
|
|
var common = layui.common;
|
|||
|
|
common.clientsInit(function (res) {
|
|||
|
|
AccountType = res.accounttype;
|
|||
|
|
StatusType = res.statustype;
|
|||
|
|
AdStatus = res.adstatus;
|
|||
|
|
DeviceStatus = res.devicestatus;
|
|||
|
|
DeviceType = res.devicetype;
|
|||
|
|
DeviceNetType = res.devicenettype;
|
|||
|
|
DeviceNetStatus = res.devicenetstatus;
|
|||
|
|
});
|
|||
|
|
});
|