37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
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, AuthorizerStatus, DeviceVerType, DeviceProType, DeviceStatus, AdStatus, AdType, AdPositionType, OutProductStatus, OutProductPayType, OutProductType, GenderType, OrderStatus, OrderType;
|
|
|
|
layui.use(['common'], function () {
|
|
var common = layui.common;
|
|
common.clientsInit(function (res) {
|
|
AccountType = res.accounttype;
|
|
StatusType = res.statustype;
|
|
AuthorizerStatus = res.authorizerstatus;
|
|
DeviceProType = res.deviceprotype;
|
|
DeviceVerType = res.devicevertype;
|
|
DeviceStatus = res.devicestatus;
|
|
AdStatus = res.adstatus;
|
|
AdType = res.adtype;
|
|
AdPositionType = res.adpositiontype;
|
|
OutProductStatus = res.outproductstatus;
|
|
OutProductPayType = res.outproductpaytype;
|
|
OutProductType = res.outproducttype;
|
|
GenderType = res.gendertype;
|
|
OrderStatus = res.orderstatus;
|
|
OrderType = res.ordertype;
|
|
});
|
|
}); |