1639 lines
55 KiB
JavaScript
1639 lines
55 KiB
JavaScript
/// <reference path="jquery-3.6.0.min.js" />
|
||
|
||
if (typeof _fleet !== 'object') {
|
||
_fleet = {};
|
||
_fleet.currentLang = "en-us";
|
||
Object.defineProperty(_fleet, 'currentMapLang', {
|
||
get: function () {
|
||
var lang = (_fleet.currentLang || '').toLowerCase();
|
||
switch (lang) {
|
||
case 'zh-cn':
|
||
return 'zh-CN';
|
||
case 'zh-hk':
|
||
return 'zh-HK';
|
||
case 'zh-tw':
|
||
return 'zh-TW';
|
||
case 'pt-br':
|
||
return 'pt-BR';
|
||
case 'pt-pt':
|
||
return 'pt-PT';
|
||
default:
|
||
return lang.split('-')[0];
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
// 网络操作类
|
||
if (typeof _network !== 'object') {
|
||
_network = { 'root': '' };
|
||
|
||
(function () {
|
||
'use strict';
|
||
|
||
// 请求服务器
|
||
_network.request = function (url, methodid, method, param, callback, error, nolog, isSync) {
|
||
//var ajaxTime = new Date().getTime();
|
||
$.ajax({
|
||
url: _network.root + url,
|
||
type: 'POST',
|
||
dataType: 'json',
|
||
//contentType: 'application/xml;charset=utf-8',
|
||
cache: false,
|
||
data: {
|
||
'MethodID': methodid,
|
||
'MethodName': method,
|
||
'ClientData': param,
|
||
//'RequestID': ajaxTime
|
||
},
|
||
async: !isSync,
|
||
success: callback,
|
||
error: function (request, textStatus, errorThrown) {
|
||
if (error)
|
||
error(request, textStatus, errorThrown);
|
||
if (!nolog) {
|
||
if (request && request.readyState == 0)
|
||
console.log(request);
|
||
else
|
||
writelog_ironintel("_network.request", url + "." + methodid + "." + method + "." + JSON.stringify(param), JSON.stringify(request), textStatus + errorThrown);
|
||
}
|
||
}
|
||
}).done(function () {
|
||
//var dt2 = new Date().getTime();
|
||
//var totalTime = dt2 - ajaxTime;
|
||
//writelog_ironintel("_network.request", url + "." + method, totalTime + "-" + ajaxTime + "-" + dt2, ajaxTime);
|
||
});
|
||
};
|
||
|
||
//CommonPage
|
||
_network.commonpagequery = function (methodid, param, callback, error, nolog, isSync) {
|
||
//_network.request("commonsvc.ashx", methodid, "", param, callback, error);
|
||
$.ajax({
|
||
url: _network.root + 'commonsvc.ashx',
|
||
type: 'POST',
|
||
dataType: 'json',
|
||
cache: false,
|
||
data: JSON.stringify({
|
||
'MethodID': methodid,
|
||
'ClientData': param
|
||
}),
|
||
async: !isSync,
|
||
success: callback,
|
||
error: function (request, textStatus, errorThrown) {
|
||
if (error)
|
||
error(request, textStatus, errorThrown);
|
||
if (!nolog) {
|
||
if (request && request.readyState == 0)
|
||
console.log(request);
|
||
else
|
||
writelog_ironintel("_network.commonpagequery", "commonsvc.ashx" + "." + methodid + "." + JSON.stringify(param), JSON.stringify(request), textStatus + errorThrown);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
// MainPage
|
||
_network.mainpagequery = function (method, param, callback, error, nolog) {
|
||
_network.request("IronIntelMain.aspx?tp=ashx", -1, method, param, callback, error, nolog);
|
||
}
|
||
|
||
function getFilterHandlerURL() {
|
||
if (typeof sitePath !== 'string')
|
||
return 'fic/SelectAutoFilterHandler.ashx?SN=' + Math.random();
|
||
|
||
return sitePath + 'fic/SelectAutoFilterHandler.ashx?SN=' + Math.random();
|
||
}
|
||
|
||
// 请求服务器
|
||
_network.pivotRequest = function (method, param, callback, error, nolog, isSync) {
|
||
$.ajax({
|
||
url: getFilterHandlerURL(),
|
||
type: 'POST',
|
||
dataType: 'json',
|
||
//contentType: 'application/xml;charset=utf-8',
|
||
cache: false,
|
||
data: encodeURIComponent(JSON.stringify({
|
||
'LoginIID': loginedUser('userIId'),
|
||
'SessionID': '',
|
||
'LanguageID': _utility.currentLang,
|
||
'UtcOffset': new Date().getTimezoneOffset(),
|
||
'Flag': 0,
|
||
'AppName': '',
|
||
'MethodName': method,
|
||
'Parameters': param,
|
||
'RequestTime': _utility.getTicksFromDate(new Date())
|
||
})),
|
||
async: !isSync,
|
||
success: callback,
|
||
error: function (request, textStatus, errorThrown) {
|
||
if (error)
|
||
error(request, textStatus, errorThrown);
|
||
if (!nolog) {
|
||
writelog("_network.pivotRequest", textStatus, errorThrown + "");
|
||
}
|
||
//console.log(request);
|
||
//console.log(textStatus);
|
||
}
|
||
});
|
||
};
|
||
}());
|
||
}
|
||
|
||
//websocket
|
||
if (typeof $websocket !== 'function') {
|
||
$websocket = function (url) {
|
||
var _url = url;
|
||
var socket;
|
||
var state = 0;
|
||
var _this = this;
|
||
this.onreceive = null;
|
||
|
||
var _timer = null;
|
||
|
||
this.connect = function () {
|
||
if (!_url || !_url.startsWith("ws")) return;
|
||
if (socket) {
|
||
socket.onopen = null;
|
||
socket.onclose = null;
|
||
socket.onmessage = null
|
||
socket.onerror = null;
|
||
if (_timer) {
|
||
clearInterval(_timer);
|
||
_timer = null;
|
||
}
|
||
}
|
||
socket = new WebSocket(_url);
|
||
socket.onopen = onopen;
|
||
socket.onclose = onclose;
|
||
socket.onmessage = onmessage
|
||
socket.onerror = onerror;
|
||
|
||
_timer = setInterval(function () {
|
||
_this.send(0);
|
||
}, 120 * 1000);
|
||
|
||
state = 0;
|
||
}
|
||
|
||
this.disconnect = function () {
|
||
if (socket) {
|
||
socket.close(1000, "close");
|
||
state = 100;//closed;
|
||
}
|
||
}
|
||
|
||
this.send = function (content) {
|
||
socket.send(content);
|
||
}
|
||
|
||
function onopen(e) {
|
||
|
||
}
|
||
|
||
function onclose(e) {
|
||
if (state != 100) {
|
||
setTimeout(function () {
|
||
_this.connect();
|
||
}, 10000);
|
||
}
|
||
}
|
||
|
||
function onmessage(e) {
|
||
if (_this.onreceive) {
|
||
var d = JSON.parse(e.data);
|
||
_this.onreceive(d);
|
||
}
|
||
}
|
||
|
||
function onerror(e) {
|
||
//if (state != 100) {
|
||
// setTimeout(function () {
|
||
// _this.connect();
|
||
// }, 10000);
|
||
//}
|
||
}
|
||
};
|
||
}
|
||
|
||
|
||
(function () {
|
||
'use strict';
|
||
|
||
var iX, iY;
|
||
|
||
function dragTitle(ev) {
|
||
if (ev.target && ev.target.nodeName === 'EM')
|
||
return false;
|
||
|
||
var dialog = ev.data;
|
||
|
||
window.draggingDialog = dialog;
|
||
var o = getInnerOffset(dialog);
|
||
iX = ev.clientX - o.left;
|
||
iY = ev.clientY - o.top;
|
||
$(document).mousemove(dragmove);
|
||
$(document).mouseup(dragup);
|
||
var _this = this;
|
||
_this.setCapture && _this.setCapture();
|
||
|
||
var window_width = $(window).width();
|
||
var window_height = $(window).height();
|
||
var dragging_width = dialog.width();
|
||
var dragging_height = dialog.height();
|
||
function dragmove(e) {
|
||
var e = e || window.event;
|
||
var left, top;
|
||
left = Math.max(Math.min((e.clientX - iX), window_width - dragging_width - 2), 0);
|
||
top = Math.max(Math.min((e.clientY - iY), window_height - dragging_height - 2), 0);
|
||
window.draggingDialog.css({
|
||
'left': left,
|
||
'top': top
|
||
});
|
||
};
|
||
function dragup(e) {
|
||
$(document).unbind('mousemove', dragmove);
|
||
$(document).unbind('mouseup', dragup);
|
||
delete window.draggingDialog;
|
||
_this.releaseCapture && _this.releaseCapture();
|
||
e.cancelBubble = true;
|
||
};
|
||
|
||
return false;
|
||
}
|
||
|
||
$.fn.dialog = function (closefunc, removable) {
|
||
this.children('.dialog-title').mousedown(this, dragTitle);
|
||
|
||
function onclose(e) {
|
||
if (removable) {
|
||
e.data.remove();
|
||
} else {
|
||
e.data.hideDialog();
|
||
}
|
||
if (typeof closefunc === 'function') {
|
||
closefunc(e);
|
||
}
|
||
}
|
||
this.find('.dialog-close').click(this, onclose);
|
||
this.find('.form-close').click(this, onclose);
|
||
this.find('input.dialog-close').keydown(resettab);
|
||
var _this = this;
|
||
function resettab(e) {
|
||
if (e.keyCode == 9) {
|
||
var input = _this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
return false;
|
||
}
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
$.fn.showDialogfixed = function (unfocus) {
|
||
var top = (document.documentElement.clientHeight - this.height()) / 3;
|
||
if (top < 0) top = 0;
|
||
var left = (document.documentElement.clientWidth - this.width()) / 2;
|
||
if (left < 0) left = 0;
|
||
this.css({
|
||
'top': top, 'left': left
|
||
});
|
||
|
||
this.show();
|
||
if (!unfocus) {
|
||
var input = this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
}
|
||
};
|
||
|
||
$.fn.showDialogAuto = function (maxwidth) {
|
||
var width = maxwidth;
|
||
var awidth = document.documentElement.clientWidth * 98 / 100;
|
||
if (width > awidth)
|
||
width = awidth;
|
||
this.css("width", width);
|
||
|
||
var top = (document.documentElement.clientHeight - this.height()) / 3;
|
||
if (top < 0) top = 0;
|
||
var left = (document.documentElement.clientWidth - width) / 2;
|
||
if (left < 0) left = 0;
|
||
this.css({
|
||
'top': top, 'left': left
|
||
});
|
||
|
||
this.show();
|
||
var input = this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
};
|
||
|
||
$.fn.showDialog = function () {
|
||
//if (this.maskbg == undefined) {
|
||
// this.maskbg = $('<div class="maskbg"></div>');
|
||
// this.maskbg.appendTo(document.body);
|
||
//}
|
||
//this.maskbg.show();
|
||
|
||
var top = (document.documentElement.clientHeight - this.height()) / 3;
|
||
if (top < 0) top = 0;
|
||
var left = (document.documentElement.clientWidth - this.width()) / 2;
|
||
if (left < 0) left = 0;
|
||
this.css({
|
||
'top': top, 'left': left
|
||
});
|
||
var maskheight = this.parent().outerHeight(false);
|
||
var maskwidth = this.parent().outerWidth(false);
|
||
if (maskheight > 0)
|
||
$('#mask_bg').height(maskheight);
|
||
if (maskwidth > 0)
|
||
$('#mask_bg').width(maskwidth);
|
||
if (this.attr("init") !== "1") {
|
||
this.attr("init", "1");
|
||
var _this = this;
|
||
|
||
$(window).resize(function () {
|
||
_this.height(_this.parent().outerHeight(false) - 64).width(_this.parent().outerWidth(false) - left - 2);
|
||
$('#mask_bg').height($(document).outerHeight(false) - 64).width($(document).outerWidth(false));
|
||
});
|
||
}
|
||
|
||
this.show();
|
||
var input = this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
return this;
|
||
};
|
||
|
||
$.fn.showDialogRight = function () {
|
||
//if (this.maskbg == undefined) {
|
||
// this.maskbg = $('<div class="maskbg"></div>');
|
||
// this.maskbg.appendTo(document.body);
|
||
//}
|
||
//this.maskbg.show();
|
||
|
||
this.css({
|
||
'top': 0,
|
||
//'bottom': 0,
|
||
'left': 0,
|
||
//'right': 0,
|
||
'width': $(document).outerWidth(false) - 2,
|
||
'height': $(document).outerHeight(false)
|
||
});
|
||
$('#mask_bg').height($(document).outerHeight(false)).width($(document).outerWidth(false));
|
||
|
||
if (this.attr("init") !== "1") {
|
||
this.attr("init", "1");
|
||
var _this = this;
|
||
|
||
$(window).resize(function () {
|
||
_this.height($(document).outerHeight(false)).width($(document).outerWidth(false) - 2);
|
||
});
|
||
}
|
||
|
||
this.show();
|
||
var input = this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
};
|
||
|
||
$.fn.showDialogRight1 = function (left) {
|
||
if (!left)
|
||
left = 100;
|
||
this.css({
|
||
'top': 0,
|
||
//'bottom': 0,
|
||
'left': left,
|
||
//'right': 0,
|
||
'width': $(document).outerWidth(false) - left - 50,
|
||
'height': $(document).outerHeight(false) - 64
|
||
});
|
||
$('#mask_bg').height($(document).outerHeight(false) - 64).width($(document).outerWidth(false) - 50);
|
||
|
||
if (this.attr("init") !== "1") {
|
||
this.attr("init", "1");
|
||
var _this = this;
|
||
|
||
$(window).resize(function () {
|
||
_this.height($(document).outerHeight(false) - 64).width($(document).outerWidth(false) - left - 2);
|
||
$('#mask_bg').height($(document).outerHeight(false) - 64).width($(document).outerWidth(false));
|
||
});
|
||
}
|
||
|
||
this.show();
|
||
var input = this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
};
|
||
|
||
$.fn.showDialogRight2 = function () {
|
||
//if (this.maskbg == undefined) {
|
||
// this.maskbg = $('<div class="maskbg"></div>');
|
||
// this.maskbg.appendTo(document.body);
|
||
//}
|
||
//this.maskbg.show();
|
||
|
||
this.css({
|
||
'top': 0,
|
||
//'bottom': 0,
|
||
'right': 0,
|
||
'width': 800,
|
||
'height': $(document).outerHeight(false)
|
||
});
|
||
$('#mask_bg').height($(document).outerHeight(false)).width($(document).outerWidth(false));
|
||
|
||
if (this.attr("init") !== "1") {
|
||
this.attr("init", "1");
|
||
var _this = this;
|
||
|
||
$(window).resize(function () {
|
||
_this.height($(document).outerHeight(false)).width($(document).outerWidth(false) - 2);
|
||
});
|
||
}
|
||
|
||
this.show();
|
||
var input = this.find("input:not(:disabled),select:not(:disabled)").eq(0);
|
||
input.focus();
|
||
};
|
||
|
||
$.fn.hideDialog = function () {
|
||
//if (this.maskbg) {
|
||
// this.maskbg.hide();
|
||
//}
|
||
this.hide();
|
||
};
|
||
|
||
function clearDropdowns() {
|
||
var dropdownpanel = $('.dropdown-wrapper .dropdown-panel.active');
|
||
dropdownpanel.removeClass('active');
|
||
var dd = dropdownpanel.parent().data('dropdown');
|
||
if (dd && dd.multiselect && dd.oncollapsed)
|
||
dd.oncollapsed();
|
||
}
|
||
$(function () {
|
||
$(document)
|
||
.on('mousedown.dropdown', clearDropdowns)
|
||
.on('mousedown.dropdown', '.dropdown-wrapper .dropdown-panel', function (e) { e.stopPropagation() });
|
||
});
|
||
|
||
var Dropdown = function () { };
|
||
|
||
function triggerMultiSelect(li) {
|
||
var textKey = this.textKey;
|
||
var list;
|
||
var checkbox = li.children('input');
|
||
if (checkbox.attr('isall') == '1') {
|
||
li.parent().find('input').prop('checked', this.__isallchecked = checkbox.prop('checked'));
|
||
list = [];
|
||
} else {
|
||
if (checkbox.prop('checked')) {
|
||
list = Array.prototype.slice.apply(li.parent().find('input.dataitem:checked')).map(function (e) { return $(e).parent().data('item') });
|
||
} else {
|
||
list = this.label.data('selectedlist') || [];
|
||
var item = li.data('item');
|
||
if (this.__isallchecked) {
|
||
this.__isallchecked = false;
|
||
li.parent().find('input[isall="1"]').prop('checked', false);
|
||
for (var i = 0; i < this.source.length; i++) {
|
||
var it = this.source[i];
|
||
if (it != item) {
|
||
list.push(it);
|
||
}
|
||
}
|
||
} else {
|
||
for (var i = 0; i < list.length; i++) {
|
||
if (list[i] == item) {
|
||
list.splice(i, 1);
|
||
//break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var text = this.__isallchecked ? GetTextByKey('P_GRID_ALL', '(All)') : list.map(function (it) { return it[textKey] }).join(', ');
|
||
if (text == null || text.trim() == '') {
|
||
this.label.data('selectedlist', list).html(' ');
|
||
} else {
|
||
this.label.data('selectedlist', list).text(text);
|
||
}
|
||
if (typeof this.onselectedlist === 'function') {
|
||
this.onselectedlist(list);
|
||
}
|
||
}
|
||
|
||
function fillList(list, source) {
|
||
list.empty();
|
||
var selected = this.label.data('selected');
|
||
var selectedlist = this.label.data('selectedlist') || [];
|
||
var scrolled = null;
|
||
var valueKey = this.valueKey;
|
||
var textKey = this.textKey;
|
||
var htmlKey = this.htmlKey;
|
||
var multiselect = this.multiselect;
|
||
var This = this;
|
||
var allchecked = this.__isallchecked;
|
||
if (multiselect) { // && source == this.source
|
||
var liall = $('<li></li>');
|
||
list.append(liall.append(
|
||
$('<input type="checkbox" isall="1"></input>').prop('checked', allchecked).on('change', function () { triggerMultiSelect.call(This, liall) }),
|
||
$('<label></label>').text(GetTextByKey('P_GRID_ALL', '(All)'))
|
||
));
|
||
}
|
||
for (var i = 0; i < source.length; i++) {
|
||
if (i >= 200) break;
|
||
var item = source[i];
|
||
var li = $('<li></li>').data('item', item).attr({
|
||
'value': item[valueKey],
|
||
'title': item[textKey]
|
||
});
|
||
if (multiselect) {
|
||
var lbl;
|
||
var html = item[htmlKey];
|
||
if (html != null) {
|
||
lbl = $('<label></label>').html(html);
|
||
} else {
|
||
lbl = $('<label></label>').text(item[textKey]);
|
||
}
|
||
var chkbox = $('<input type="checkbox" class="dataitem"></input>');
|
||
if (allchecked || selectedlist.filter(function (s) { return s[valueKey] === item[valueKey] }).length > 0) {
|
||
chkbox.prop('checked', true);
|
||
}
|
||
!function (l) {
|
||
chkbox.on('change', function () {
|
||
triggerMultiSelect.call(This, l);
|
||
});
|
||
}(li);
|
||
li.append(chkbox, lbl);
|
||
} else {
|
||
var html = item[htmlKey];
|
||
if (html != null) {
|
||
li.html(html);
|
||
} else {
|
||
li.text(item[textKey]);
|
||
}
|
||
if (selected && selected[valueKey] === item[valueKey]) {
|
||
scrolled = 30 * i;
|
||
li.addClass('selected');
|
||
}
|
||
}
|
||
list.append(li);
|
||
}
|
||
if (scrolled != null) {
|
||
setTimeout(function () {
|
||
list.scrollTop(scrolled);
|
||
}, 1);
|
||
}
|
||
}
|
||
|
||
Dropdown.prototype.create = function (options) {
|
||
var This = this;
|
||
if (options == null) {
|
||
options = {};
|
||
}
|
||
this.multiselect = options.multiselect;
|
||
this.search = options.search;
|
||
this.parent = options.parent;
|
||
this.textKey = options.textKey || 'text';
|
||
this.valueKey = options.valueKey || 'value';
|
||
this.htmlKey = options.htmlKey || 'html';
|
||
this.searchKeys = options.searchKeys;
|
||
this.disabled = options.disabled || false;
|
||
this.maxlength = options.maxlength || 500;
|
||
this.searchPlaceholder = options.searchPlaceholder || (GetTextByKey('P_WO_SEARCH', 'Search') + '...');
|
||
var container = $('<div class="dropdown-wrapper"></div>');
|
||
container.data('dropdown', this);
|
||
this.container = container;
|
||
var header = $('<div class="dropdown-header"></div>');
|
||
if (options.disabled) {
|
||
header.addClass('disabled');
|
||
}
|
||
header.on('click', function () {
|
||
if (This.disabled) {
|
||
return;
|
||
}
|
||
var active = This.dropdownContainer != null && This.dropdownContainer.css('visibility') === 'visible';
|
||
if (active && This.label.is(':focus')) {
|
||
return;
|
||
}
|
||
This.dropdown(!active);
|
||
if (!active && typeof This.onexpanded === 'function') {
|
||
setTimeout(function () { This.onexpanded() }, 120);
|
||
}
|
||
});
|
||
var label;
|
||
if (options.input && !this.multiselect) {
|
||
label = $('<input type="text" class="dropdown-text"/>').attr('maxlength', this.maxlength)
|
||
.on('mousedown', function (e) {
|
||
if (This.dropdownContainer != null && This.dropdownContainer.css('visibility') === 'visible') {
|
||
e.stopPropagation();
|
||
}
|
||
})
|
||
.on('blur', function () {
|
||
This.select($(this).val(), true);
|
||
});
|
||
} else {
|
||
label = $('<label class="dropdown-text"></label>').html(' ');
|
||
}
|
||
this.label = label;
|
||
if (options.selected != null) {
|
||
this.select(options.selected);
|
||
}
|
||
header.append(label);
|
||
header.append('<label class="dropdown-caret"></label>');
|
||
container.append(header);
|
||
return container;
|
||
};
|
||
Dropdown.prototype.setDisabled = function (flag) {
|
||
this.disabled = flag;
|
||
if (flag) {
|
||
this.container.children('.dropdown-header').addClass('disabled');
|
||
} else {
|
||
this.container.children('.dropdown-header').removeClass('disabled');
|
||
}
|
||
};
|
||
Dropdown.prototype.setSource = function (source) {
|
||
this.source = source;
|
||
if (this.dropdownContainer != null && this.dropdownContainer.css('visibility') === 'visible') {
|
||
var This = this;
|
||
//this.dropdownContainer.removeClass('active');
|
||
setTimeout(function () { This.dropdown(true) }, 120);
|
||
}
|
||
};
|
||
Dropdown.prototype.select = function (selected, blur) {
|
||
if (blur && this.__lastSelected == selected) {
|
||
return;
|
||
}
|
||
this.__lastSelected = selected;
|
||
if (this.source == null) {
|
||
if (typeof this.sourceFilter === 'function') {
|
||
this.source = this.sourceFilter(true);
|
||
}
|
||
if (!$.isArray(this.source)) {
|
||
return;
|
||
}
|
||
}
|
||
var valueKey = this.valueKey;
|
||
var textKey = this.textKey;
|
||
var item = this.source.filter(function (i) { return i[valueKey] == selected })[0];
|
||
if (item == null) {
|
||
if (this.label.is('input')) {
|
||
item = {};
|
||
item[valueKey] = selected;
|
||
this.label.data('selected', item).val(selected);
|
||
if (typeof this.onselected === 'function') {
|
||
this.onselected(item);
|
||
}
|
||
} else {
|
||
this.label.removeData('selected').val('').html(' ');
|
||
return false;
|
||
}
|
||
} else {
|
||
if (item[textKey] == null || String(item[textKey]).trim() == '') {
|
||
this.label.data('selected', item).val(item[valueKey]).html(' ');
|
||
} else {
|
||
if (this.label.is('input'))
|
||
this.label.data('selected', item).val(item[textKey]);
|
||
else
|
||
this.label.data('selected', item).val(item[valueKey]).text(item[textKey]);
|
||
}
|
||
}
|
||
};
|
||
Dropdown.prototype.selectlist = function (selectedlist) {
|
||
if (this.source == null) {
|
||
if (typeof this.sourceFilter === 'function') {
|
||
this.source = this.sourceFilter(true);
|
||
}
|
||
if (!$.isArray(this.source)) {
|
||
return;
|
||
}
|
||
}
|
||
var valueKey = this.valueKey;
|
||
var textKey = this.textKey;
|
||
var itemlist = this.source.filter(function (i) { return selectedlist.indexOf(i[valueKey]) >= 0 });
|
||
if (itemlist.length == 0) {
|
||
this.label.removeData('selectedlist').html(' ');
|
||
return false;
|
||
} else {
|
||
var text = itemlist.map(function (it) { return it[textKey] }).join(', ');
|
||
if (text == null || text.trim() == '') {
|
||
this.label.data('selectedlist', itemlist).html(' ');
|
||
} else {
|
||
this.label.data('selectedlist', itemlist).text(text);
|
||
}
|
||
}
|
||
};
|
||
Object.defineProperty(Dropdown.prototype, 'selected', {
|
||
get: function () {
|
||
return this.label.data('selected');
|
||
}
|
||
});
|
||
Object.defineProperty(Dropdown.prototype, 'selectedlist', {
|
||
get: function () {
|
||
return this.label.data('selectedlist') || [];
|
||
}
|
||
})
|
||
Dropdown.prototype.dropdown = function (flag) {
|
||
if (flag == null) {
|
||
flag = true;
|
||
}
|
||
var This = this;
|
||
var textKey = this.textKey;
|
||
var valueKey = this.valueKey;
|
||
var searchKeys = this.searchKeys;
|
||
if (!searchKeys || searchKeys.length == 0) searchKeys = [textKey];
|
||
if (this.dropdownContainer == null) {
|
||
var panel = $('<div class="dropdown-panel"></div>');
|
||
// search box
|
||
if (this.search) {
|
||
var search = $('<div class="dropdown-search"></div>');
|
||
var input = $('<input type="text"></input>').attr('placeholder', This.searchPlaceholder);
|
||
input.on('input', function () {
|
||
var key = $(this).val().toLowerCase();
|
||
var source = This.source;
|
||
if (source == null) {
|
||
if (typeof This.sourceFilter === 'function') {
|
||
source = This.sourceFilter();
|
||
}
|
||
if ($.isArray(source)) {
|
||
source = [];
|
||
}
|
||
This.source = source;
|
||
}
|
||
if (key.length > 0) {
|
||
source = source.filter(function (i) {
|
||
for (var k = 0; k < searchKeys.length; k++) {
|
||
var text = i[searchKeys[k]].toLowerCase();
|
||
if (text.indexOf(key) >= 0) return true;
|
||
}
|
||
return false;
|
||
});
|
||
}
|
||
fillList.call(This, panel.children('.dropdown-list'), source);
|
||
});
|
||
search.append(input, '<em class="fal fa-search"></em>');
|
||
panel.append(search);
|
||
}
|
||
// create list
|
||
var list = $('<ul class="dropdown-list"></ul>');
|
||
if (this.multiselect) {
|
||
list.on('mouseup', function (e) {
|
||
var li = $(e.target);
|
||
if (li.is('input[type="checkbox"]')) {
|
||
return;
|
||
}
|
||
if (li.is('label')) {
|
||
li = li.parent();
|
||
}
|
||
if (li.is('li')) {
|
||
e.preventDefault();
|
||
var checkbox = li.children('input[type="checkbox"]');
|
||
var checked = !checkbox.prop('checked');
|
||
checkbox.prop('checked', checked);
|
||
triggerMultiSelect.call(This, li);
|
||
}
|
||
});
|
||
} else {
|
||
list.on('click', function (e) {
|
||
var li = $(e.target);
|
||
if (li.is('li')) {
|
||
var item = li.data('item');
|
||
clearDropdowns();
|
||
if (item[textKey] == null || String(item[textKey]).trim() == '') {
|
||
This.label.data('selected', item).val(item[valueKey]).html(' ');
|
||
} else {
|
||
if (This.label.is('input'))
|
||
This.label.data('selected', item).val(item[textKey]);
|
||
else
|
||
This.label.data('selected', item).val(item[valueKey]).text(item[textKey]);
|
||
}
|
||
if (typeof This.onselected === 'function') {
|
||
This.onselected(item);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
panel.append(list);
|
||
this.dropdownContainer = panel;
|
||
this.container.append(panel);
|
||
}
|
||
var source = this.source;
|
||
if (typeof this.sourceFilter === 'function') {
|
||
source = this.sourceFilter();
|
||
if (!$.isArray(source)) {
|
||
source = [];
|
||
}
|
||
this.source = source;
|
||
}
|
||
fillList.call(this, this.dropdownContainer.children('.dropdown-list'), source);
|
||
if (flag) {
|
||
var parent;
|
||
if (this.parent != null) {
|
||
parent = this.container.parents(this.parent);
|
||
} else {
|
||
parent = $(document.body);
|
||
}
|
||
var offset = this.container.offset();
|
||
var height = this.dropdownContainer.height();
|
||
if (offset.top - parent.offset().top + 28 + height > parent.height()) {
|
||
this.dropdownContainer.css('margin-top', -height - 29).addClass('slide-up');
|
||
} else {
|
||
this.dropdownContainer.css('margin-top', '').removeClass('slide-up');
|
||
}
|
||
this.dropdownContainer.css('min-width', this.container.width() + 2);
|
||
this.dropdownContainer.addClass('active');
|
||
var panel = this.dropdownContainer;
|
||
setTimeout(function () { panel.children('.dropdown-search').children('input[type="text"]').focus().val("") }, 120);
|
||
} else {
|
||
this.dropdownContainer.removeClass('active');
|
||
}
|
||
};
|
||
|
||
$.fn.dropdown = function (source, opts) {
|
||
var This = this;
|
||
var dropdown = new Dropdown();
|
||
dropdown.source = source;
|
||
dropdown.onexpanded = function () {
|
||
This.trigger('expand');
|
||
};
|
||
dropdown.oncollapsed = function () {
|
||
This.trigger('collapsed');
|
||
};
|
||
dropdown.onselected = function (it) {
|
||
This.trigger('select', it);
|
||
};
|
||
//dropdown.onselectedlist = function (list) {
|
||
// This.trigger('select', list);
|
||
//};
|
||
this.data('dropdown', dropdown);
|
||
this.append(dropdown.create(opts));
|
||
return this;
|
||
};
|
||
$.fn.dropdownDisabled = function (flag) {
|
||
this.data('dropdown').setDisabled(flag);
|
||
return this;
|
||
};
|
||
$.fn.dropdownVal = function (value) {
|
||
var dropdown = this.data('dropdown');
|
||
if (value === void 0) {
|
||
var item = dropdown.selected;
|
||
return item && item[dropdown.valueKey];
|
||
}
|
||
var result = dropdown.select(value);
|
||
if (result === false && value === '') {
|
||
var it = dropdown.source[0];
|
||
dropdown.select(it && it[dropdown.valueKey]);
|
||
}
|
||
return this;
|
||
};
|
||
$.fn.dropdownVals = function (list) {
|
||
var dropdown = this.data('dropdown');
|
||
if (list === void 0) {
|
||
if (dropdown == null) {
|
||
return [];
|
||
}
|
||
var list = dropdown.selectedlist;
|
||
return list.map(function (it) { return it[dropdown.valueKey] });
|
||
}
|
||
dropdown.selectlist(list);
|
||
return this;
|
||
};
|
||
$.fn.dropdownSource = function (source) {
|
||
this.data('dropdown').setSource(source);
|
||
return this;
|
||
};
|
||
|
||
})();
|
||
|
||
if (typeof _dialog !== 'object') {
|
||
|
||
_dialog = {};
|
||
|
||
_dialog.showConfirm = function (msg, title, fyes, fno, fclose, iniframe, shownote) {
|
||
if (!fclose)
|
||
fclose = fno;
|
||
_dialog.showButtonDialog(msg, title, 'question', fclose, [{
|
||
value: GetTextByKey("P_UTILITY_NO", 'No'),
|
||
func: fno
|
||
}, {
|
||
value: GetTextByKey("P_UTILITY_YES", 'Yes'),
|
||
func: fyes
|
||
}], iniframe, shownote);
|
||
};
|
||
|
||
_dialog.showConfirmOKCancel = function (msg, title, fok, fcancel, fclose, iniframe) {
|
||
if (!fclose)
|
||
fclose = fcancel;
|
||
_dialog.showButtonDialog(msg, title, 'question', fclose, [{
|
||
value: GetTextByKey("P_UTILITY_CANCEL", 'Cancel'),
|
||
func: fcancel
|
||
}, {
|
||
value: GetTextByKey("P_UTILITY_OK", 'OK'),
|
||
func: fok
|
||
}], iniframe);
|
||
};
|
||
|
||
_dialog.showConfirmYesNoCancel = function (msg, title, fok, fcancel, fclose, iniframe) {
|
||
if (!fclose)
|
||
fclose = fcancel;
|
||
_dialog.showButtonDialog(msg, title, 'question', fclose, [{
|
||
value: GetTextByKey("P_UTILITY_CANCEL", 'Cancel'),
|
||
func: fclose
|
||
}, {
|
||
value: GetTextByKey("P_UTILITY_NO", 'No'),
|
||
func: fcancel
|
||
}, {
|
||
value: GetTextByKey("P_UTILITY_YES", 'Yes'),
|
||
func: fok
|
||
}], iniframe);
|
||
};
|
||
|
||
_dialog.showButtonDialog = function (msg, title, icon, fno, buttons, iniframe, shownote) {
|
||
var dialog = $('<div class="dialog popupmsg" style="z-index:1000;"></div>');
|
||
dialog.css("position", "fixed");
|
||
|
||
var title = $('<div class="dialog-title"></div>').append([
|
||
$('<span class="title"></span>').text(title),
|
||
$('<em class="dialog-close"></em>')
|
||
]);
|
||
title.appendTo(dialog);
|
||
var dialogText = $('<div class="dialog-text"></div>').html(msg);
|
||
var note;
|
||
if (shownote) {
|
||
note = $('<textarea style="display:block; width:98%; box-sizing:border-box; margin-top:10px; height:80px"></textarea>');
|
||
dialogText.append(note);
|
||
}
|
||
var content = $('<div class="dialog-content"></div>').append([
|
||
$('<em></em>').addClass(icon),
|
||
dialogText
|
||
]);
|
||
content.appendTo(dialog);
|
||
var btns = [];
|
||
for (var i = 0; i < buttons.length; i++) {
|
||
if (buttons[i].func == 'dialog-close') {
|
||
btns.push($('<input type="button" class="dialog-close" />').val(buttons[i].value));
|
||
} else {
|
||
btns.push($('<input type="button" />').val(buttons[i].value).click(i, function (e) {
|
||
dialog.remove();
|
||
if (typeof buttons[e.data].func === 'function') {
|
||
var notes = (note != null) && note.val();
|
||
buttons[e.data].func(e, notes);
|
||
}
|
||
}));
|
||
}
|
||
}
|
||
btns.push($('<div class="clear"></div>'));
|
||
var func = $('<div class="dialog-func"></div>').append(btns);
|
||
func.appendTo(dialog);
|
||
|
||
dialog.appendTo($(document.body)).show();
|
||
if (iniframe) {
|
||
dialog.prop('iframe', true);
|
||
}
|
||
dialog.dialog(fno, true);
|
||
|
||
var top = (document.documentElement.clientHeight - dialog.height()) / 3;
|
||
if (top < 0) top = 0;
|
||
var left = (document.documentElement.clientWidth - dialog.width()) / 2;
|
||
if (left < 0) left = 0;
|
||
dialog.css({
|
||
'top': top, 'left': left
|
||
});
|
||
};
|
||
|
||
_dialog.showAlert = function (msg, title, icon, fclose, width, height) {
|
||
var dialog = $('<div class="dialog popupmsg"></div>');
|
||
dialog.css("position", "fixed");
|
||
var title = $('<div class="dialog-title"></div>').append([
|
||
$('<span class="title"></span>').text(title),
|
||
$('<em class="dialog-close"></em>')
|
||
]);
|
||
title.appendTo(dialog);
|
||
var dialog_text = $('<div class="dialog-text"></div>').html(
|
||
htmlencode(msg).replace(/\n/g, '<br/>').replace(/ /g, ' '));
|
||
if (typeof width == 'boolean' && width) {
|
||
dialog.prop('iframe', true);
|
||
} else if (!isNaN(width)) {
|
||
dialog_text.css('min-width', width);
|
||
}
|
||
if (!isNaN(height)) {
|
||
dialog_text.css('min-height', height);
|
||
}
|
||
var content = $('<div class="dialog-content"></div>').append([
|
||
$('<em></em>').addClass(icon || 'info'),
|
||
dialog_text
|
||
]);
|
||
content.appendTo(dialog);
|
||
var func = $('<div class="dialog-func"></div>').append([
|
||
$('<input type="button" value="' + GetTextByKey("P_UTILITY_OK", "OK") + '" class="dialog-close" />'),
|
||
$('<div class="clear"></div>')
|
||
]);
|
||
func.appendTo(dialog);
|
||
|
||
var maskbg = $('<div class="maskbg popupmsg"></div>').css('display', 'none');
|
||
maskbg.appendTo($(document.body)).fadeIn(100);
|
||
dialog.appendTo($(document.body)).show();
|
||
dialog.maskbg = maskbg;
|
||
dialog.dialog(function (e) {
|
||
maskbg.fadeOut(100, function () {
|
||
$(this).remove();
|
||
});
|
||
if (typeof fclose === 'function') {
|
||
fclose(e);
|
||
}
|
||
}, true);
|
||
|
||
var top = (document.documentElement.clientHeight - dialog.height()) / 3;
|
||
if (top < 0) top = 0;
|
||
var left = (document.documentElement.clientWidth - dialog.width()) / 2;
|
||
if (left < 0) left = 0;
|
||
dialog.css({
|
||
'top': top, 'left': left
|
||
});
|
||
return dialog;
|
||
};
|
||
|
||
_dialog.close = function (dialog) {
|
||
if (dialog) {
|
||
dialog.remove();
|
||
if (dialog.maskbg)
|
||
dialog.maskbg.remove();
|
||
}
|
||
}
|
||
}
|
||
|
||
function htmlencode(str, ele) {
|
||
if (ele) {
|
||
return ele.text(str).html();
|
||
}
|
||
return $('<span></span>').text(str).html();
|
||
}
|
||
|
||
function htmldecode(str, ele) {
|
||
if (ele) {
|
||
return ele.html(str).text();
|
||
}
|
||
return $('<span></span>').html(str).text();
|
||
}
|
||
|
||
function replaceHtmlText(text) {
|
||
if (!text) return "";
|
||
if (text.indexOf("&") > -1) {
|
||
var reg = new RegExp("&", "g"); //创建正则RegExp对象
|
||
text = text.replace(reg, "&");
|
||
}
|
||
if (text.indexOf("<") > -1) {
|
||
var reg = new RegExp("<", "g"); //创建正则RegExp对象
|
||
text = text.replace(reg, "<");
|
||
}
|
||
if (text.indexOf(">") > -1) {
|
||
reg = new RegExp(">", "g");
|
||
text = text.replace(reg, ">");
|
||
}
|
||
if (text.indexOf("\r\n") > -1) {
|
||
reg = new RegExp("\r\n", "g");
|
||
text = text.replace(reg, "<br/>");
|
||
}
|
||
if (text.indexOf("\n") > -1) {
|
||
reg = new RegExp("\n", "g");
|
||
text = text.replace(reg, "<br/>");
|
||
}
|
||
if (text.indexOf(" ") > -1) {
|
||
reg = new RegExp(" ", "g");
|
||
text = text.replace(reg, " ");
|
||
}
|
||
return text;
|
||
}
|
||
|
||
// 0-weak, 1-medium, 2-strong
|
||
function getStrength(val) {
|
||
if (typeof val !== 'string') {
|
||
return 0;
|
||
}
|
||
if (val.length < 8) {
|
||
return 0;
|
||
}
|
||
var lowers = 0;
|
||
var uppers = 0;
|
||
var nums = 0;
|
||
var others = 0;
|
||
for (var i = 0; i < val.length; i++) {
|
||
var c = val[i];
|
||
if (c >= 'A' && c <= 'Z') {
|
||
uppers++;
|
||
} else if (c >= 'a' && c <= 'z') {
|
||
lowers++;
|
||
} else if (c >= '0' && c <= '9') {
|
||
nums++;
|
||
} else {
|
||
others++;
|
||
}
|
||
}
|
||
if (lowers == val.length || uppers == val.length || nums == val.length || others == val.length) {
|
||
return 0;
|
||
} else if (lowers + uppers == val.length || lowers + nums == val.length || lowers + others == val.length ||
|
||
uppers + nums == val.length || uppers + others == val.length ||
|
||
nums + others == val.length || uppers == 0 || lowers == 0 || nums == 0) {
|
||
return 1;
|
||
}
|
||
return 2;
|
||
}
|
||
|
||
function isEmail(val) {
|
||
//var r = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
||
var r = /^\w[-\w.+]*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
|
||
return r.test(val);
|
||
}
|
||
|
||
function checkPhoneNumber(num) {
|
||
if (/^[1-9]\d{9,}$/.test(num)) {
|
||
return true;
|
||
}
|
||
if (/^\+?[1-9][\d-]{9,}\d$/.test(num) && /^[1-9]\d{9,}$/.test(num.replace('+', '').replace(new RegExp('-', 'g'), ''))) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
|
||
function getInnerOffset(ele) {
|
||
// _this.chartDiv.offset().left - (_this.container ? _this.getContainer().offset().left : 0) + _this.getContainer().scrollLeft();
|
||
//var offset = ele.offset();
|
||
//var obj = ele[0];
|
||
//while (obj && obj.offsetParent) {
|
||
// var j = ele.offsetParent();
|
||
// var o = j.offset();
|
||
// offset.left -= o.left - j.scrollLeft();
|
||
// offset.top -= o.top - j.scrollTop();
|
||
// obj = obj.offsetParent;
|
||
//}
|
||
//return offset;
|
||
return {
|
||
left: ele[0].offsetLeft,
|
||
top: ele[0].offsetTop
|
||
};
|
||
};
|
||
|
||
function writelog_ironintel(logtype, source, message, detail) {
|
||
var s = String.fromCharCode(170);
|
||
var log = logtype + s + source + s + message + s + detail;
|
||
var obj = {
|
||
MethodID: 3,
|
||
ClientData: log
|
||
};
|
||
|
||
var xmlhttp = new XMLHttpRequest();
|
||
xmlhttp.open("POST", _network.root + "commonsvc.ashx", true);
|
||
xmlhttp.send(JSON.stringify(obj));
|
||
}
|
||
|
||
function writeexlog(source, err) {
|
||
var message, detail = "";
|
||
if (err) {
|
||
message = err.message;
|
||
detail = err.stack;
|
||
}
|
||
writelog_ironintel("Error", source, message, detail);
|
||
}
|
||
|
||
//table排序
|
||
function setTableSort(tableid, dosort) {
|
||
var table = $("#" + tableid);
|
||
table.find("th").each(function () {
|
||
var th = $(this);
|
||
var sortPath = th.attr("sort");
|
||
if (sortPath) {
|
||
var asc = $("<span class='sorticon sorticonasc'></span>");
|
||
th.append(asc);
|
||
var desc = $("<span class='sorticon sorticondesc'></span>");
|
||
th.append(desc);
|
||
th.click(function (e) {
|
||
if (th.data("sort") == "asc") {
|
||
th.data("sort", "desc");
|
||
table.find(".sorticon").hide();
|
||
desc.show();
|
||
table.data("sortPath", sortPath).data("desc", true);
|
||
if (dosort)
|
||
dosort(sortPath, true);
|
||
}
|
||
else {
|
||
th.data("sort", "asc");
|
||
table.find(".sorticon").hide();
|
||
asc.show();
|
||
table.data("sortPath", sortPath).data("desc", false);
|
||
if (dosort)
|
||
dosort(sortPath, false);
|
||
}
|
||
});
|
||
}
|
||
});
|
||
}
|
||
|
||
//按Table已有的排序状态进行排序,主要用于数据刷新
|
||
function sortTableData(tb, data) {
|
||
var sortPath = tb.data("sortPath");
|
||
var desc = tb.data("desc");
|
||
if (sortPath) {
|
||
data.sort(dataSort(sortPath, desc));
|
||
}
|
||
}
|
||
//按Table已有的排序状态进行排序,主要用于数据刷新
|
||
function sortTableSubData(tb, data) {
|
||
var sortPath = tb.data("sortPath");
|
||
var desc = tb.data("desc");
|
||
if (sortPath) {
|
||
data.sort(subDataSort(sortPath, desc));
|
||
}
|
||
}
|
||
|
||
function dataSort(key, desc) {
|
||
return function (a, b) {
|
||
var value1 = a[key];
|
||
var value2 = b[key];
|
||
|
||
if (value1 == value2) return 0;
|
||
|
||
if (value1 == null)
|
||
return desc ? 1 : -1;
|
||
if (value2 == null)
|
||
return desc ? -1 : 1;
|
||
|
||
if (typeof (value1) === "string") {
|
||
value1 = value1.toLowerCase();
|
||
value2 = value2.toLowerCase();
|
||
}
|
||
|
||
if (value1 < value2)
|
||
return desc ? 1 : -1;
|
||
else
|
||
return desc ? -1 : 1;
|
||
}
|
||
}
|
||
|
||
function subDataSort(key, desc) {
|
||
return function (a, b) {
|
||
var keys = key.split(".");
|
||
var value1 = a[keys[0]];
|
||
var value2 = b[keys[0]];
|
||
|
||
for (var i = 1; i < keys.length; i++) {
|
||
value1 = value1[keys[i]];
|
||
value2 = value2[keys[i]];
|
||
}
|
||
|
||
if (value1 == value2) return 0;
|
||
|
||
if (value1 == null)
|
||
return desc ? 1 : -1;
|
||
if (value2 == null)
|
||
return desc ? -1 : 1;
|
||
|
||
if (typeof (value1) === "string") {
|
||
value1 = value1.toLowerCase();
|
||
value2 = value2.toLowerCase();
|
||
}
|
||
|
||
if (value1 < value2)
|
||
return desc ? 1 : -1;
|
||
else
|
||
return desc ? -1 : 1;
|
||
}
|
||
}
|
||
|
||
function resetSort(table) {
|
||
if (table)
|
||
table.find(".sorticon").hide();
|
||
else
|
||
$(".sorticon").hide();
|
||
}
|
||
|
||
//执行iframe中函数
|
||
function execIframeFunc(v_mymethod, v_params, v_frmName) {
|
||
if (document.getElementById(v_frmName)) {
|
||
var fn = document.getElementById(v_frmName).contentWindow[v_mymethod];
|
||
if (fn) {
|
||
if (v_params == null)
|
||
return fn();
|
||
else {
|
||
return fn.apply(this, v_params);
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
}
|
||
|
||
function formatNumber(num) {//千分位显示
|
||
if (isNaN(num))
|
||
return num;
|
||
var digits = 0;//小数位数
|
||
var parts = num.toString().split('.');
|
||
if (parts.length === 2)
|
||
digits = parts[1].length;
|
||
var str = num.toFixed(digits) + (digits > 0 ? "" : ".00");
|
||
return str.replace(/(\d)(?=(\d{3})+\.)/g, '$1,');
|
||
}
|
||
|
||
function isMobile() {
|
||
var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
|
||
var userAgentInfo = navigator.userAgent;
|
||
for (var v = 0; v < Agents.length; v++) {
|
||
if (userAgentInfo.indexOf(Agents[v]) > 0)
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
|
||
function getAddressLabel(address) {
|
||
var label;
|
||
if ((address.Address || '').length > 0) {
|
||
var txts = [];
|
||
txts.push(address.Address);
|
||
//if ((address.Neighborhood || '').length > 0) {
|
||
// txts.push(address.Neighborhood);
|
||
//}
|
||
if (address.City == address.Region) {
|
||
txts.push(address.City);
|
||
} else {
|
||
txts.push(address.City, address.Region);
|
||
}
|
||
if ((address.Postal || '').length > 0) {
|
||
txts.push(address.Postal);
|
||
}
|
||
label = txts.join(', ');
|
||
} else {
|
||
label = address.Match_addr;
|
||
}
|
||
return label;
|
||
}
|
||
|
||
$.debounce = function throttle(method, delay, context) {
|
||
delay = void 0 !== delay ? delay : 100;
|
||
context = void 0 !== context ? context : window;
|
||
for (var count = arguments.length, args = Array(count > 3 ? count - 3 : 0), i = 3; i < count; i++) {
|
||
args[i - 3] = arguments[i];
|
||
}
|
||
clearTimeout(method.tiid);
|
||
method.tiid = setTimeout(function () { method.apply(context, args) }, delay);
|
||
};
|
||
$.throttle = function throttle(method, delay, context) {
|
||
delay = void 0 !== delay ? delay : 100;
|
||
context = void 0 !== context ? context : window;
|
||
for (var count = arguments.length, args = Array(count > 3 ? count - 3 : 0), i = 3; i < count; i++) {
|
||
args[i - 3] = arguments[i];
|
||
}
|
||
clearTimeout(method.tiid);
|
||
var current = new Date();
|
||
if (method.tdate === void 0 || current - method.tdate > delay) {
|
||
method.apply(context, args);
|
||
method.tdate = current;
|
||
} else {
|
||
method.tiid = setTimeout(function () { method.apply(context, args) }, delay);
|
||
}
|
||
};
|
||
function Guid() {
|
||
'use strict';
|
||
|
||
this.date = new Date();
|
||
|
||
if (typeof this.create != 'function') {
|
||
|
||
Guid.prototype.create = function () {
|
||
this.date = new Date();
|
||
var guidStr = '';
|
||
var sexadecimalDate = this.hexadecimal(this.getGUIDDate(), 16);
|
||
var sexadecimalTime = this.hexadecimal(this.getGUIDTime(), 16);
|
||
for (var i = 0; i < 9; i++) {
|
||
guidStr += Math.floor(Math.random() * 16).toString(16);
|
||
}
|
||
guidStr += sexadecimalDate;
|
||
guidStr += sexadecimalTime;
|
||
while (guidStr.length < 32) {
|
||
guidStr += Math.floor(Math.random() * 16).toString(16);
|
||
}
|
||
return this.formatGUID(guidStr);
|
||
}
|
||
|
||
Guid.prototype.getGUIDDate = function () {
|
||
return this.date.getFullYear() + this.addZero(this.date.getMonth() + 1) + this.addZero(this.date.getDay());
|
||
}
|
||
|
||
Guid.prototype.getGUIDTime = function () {
|
||
return this.addZero(this.date.getHours()) + this.addZero(this.date.getMinutes()) + this.addZero(this.date.getSeconds()) + this.addZero(parseInt(this.date.getMilliseconds() / 10));
|
||
}
|
||
|
||
Guid.prototype.addZero = function (num) {
|
||
if (!isNaN(Number(num)) && num >= 0 && num < 10) { // .toString() != 'NaN'
|
||
return '0' + Math.floor(num);
|
||
} else {
|
||
return num.toString();
|
||
}
|
||
}
|
||
|
||
Guid.prototype.hexadecimal = function (num, x, y) {
|
||
if (y != undefined) {
|
||
return parseInt(num.toString(), y).toString(x);
|
||
} else {
|
||
return parseInt(num.toString()).toString(x);
|
||
}
|
||
}
|
||
|
||
Guid.prototype.formatGUID = function (guidStr) {
|
||
var str1 = guidStr.slice(0, 8) + '-',
|
||
str2 = guidStr.slice(8, 12) + '-',
|
||
str3 = guidStr.slice(12, 16) + '-',
|
||
str4 = guidStr.slice(16, 20) + '-',
|
||
str5 = guidStr.slice(20);
|
||
return str1 + str2 + str3 + str4 + str5;
|
||
}
|
||
}
|
||
}
|
||
$.newGuid = function () {
|
||
return new Guid().create();
|
||
}
|
||
|
||
$.isGuid = function (v) {
|
||
return /^[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}$/.test(v);
|
||
}
|
||
|
||
function converthtmlurl(msg) {
|
||
|
||
if (msg == null) {
|
||
return '';
|
||
}
|
||
return msg
|
||
.replace(/</g, '<')
|
||
.replace(/>/g, '>')
|
||
.replace(/ /g, ' ')
|
||
.replace(/\r\n/g, '<br/>')
|
||
.replace(/\n/g, '<br/>')
|
||
.replace(/(https?|ftp):\/\/[\w-_]+(\.[\w-_]+)+\/?[^\s\r\n"'\*$]*/g, '<a href="$&" target="_blank">$&</a>');
|
||
|
||
//const p = /(http|ftp|https):\/\/.+?(\s|\r\n|\r|\n|\"|\'|\*|$)/g;
|
||
//var r = msg.match(p);
|
||
|
||
//var rs = [];
|
||
//if (r && r.length > 0) {
|
||
// for (var i = 0; i < r.length; i++) {
|
||
// var t = r[i].replace("\"", "").replace("\'", "").replace("\r\n", "").replace("\r", "").replace("\n", "").replace(" ", "");
|
||
// if (rs.indexOf(t) < 0)
|
||
// rs.push(t);
|
||
// }
|
||
|
||
// for (var i = 0; i < rs.length; i++) {
|
||
// msg = msg.replaceAll(rs[i], "<a target='_blank' href='" + rs[i] + "'>" + rs[i] + "</a>");
|
||
// }
|
||
//}
|
||
|
||
//if (msg.indexOf("\r\n") > -1) {
|
||
// reg = new RegExp("\r\n", "g");
|
||
// msg = msg.replace(reg, "<br/>");
|
||
//}
|
||
//if (msg.indexOf("\n") > -1) {
|
||
// reg = new RegExp("\n", "g");
|
||
// msg = msg.replace(reg, "<br/>");
|
||
//}
|
||
//if (msg.indexOf(" ") > -1) {
|
||
// reg = new RegExp(" ", "g");
|
||
// msg = msg.replace(reg, " ");
|
||
//}
|
||
|
||
//return msg;
|
||
}
|
||
|
||
|
||
function formatUrl(msg) {
|
||
//const urlReg = /(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?/ig;
|
||
//const urlArrray = str.match(urlReg);
|
||
|
||
const p = /(http|ftp|https):\/\/.+?(\s|\r\n|\r|\n|\"|\'|\*|$)/g;
|
||
var r = msg.match(p);
|
||
msg = htmlencode(msg);
|
||
|
||
var rs = [];
|
||
if (r && r.length > 0) {
|
||
for (var i = 0; i < r.length; i++) {
|
||
var t = r[i].replace("\"", "").replace("\'", "").replace("\r\n", "").replace("\r", "").replace("\n", "").replace(" ", "");
|
||
if (rs.indexOf(t) < 0)
|
||
rs.push(htmlencode(t));
|
||
}
|
||
|
||
for (var i = 0; i < rs.length; i++) {
|
||
msg = msg.replace(new RegExp(rs[i], "g"), "<a style='font-family: \"FontAwesome\"' target='_blank' href='" + rs[i] + "'>\uf0c1</a>");
|
||
}
|
||
}
|
||
|
||
if (msg.indexOf("\r\n") > -1) {
|
||
reg = new RegExp("\r\n", "g");
|
||
msg = msg.replace(reg, "<br/>");
|
||
}
|
||
if (msg.indexOf("\n") > -1) {
|
||
reg = new RegExp("\n", "g");
|
||
msg = msg.replace(reg, "<br/>");
|
||
}
|
||
if (msg.indexOf(" ") > -1) {
|
||
reg = new RegExp(" ", "g");
|
||
msg = msg.replace(reg, " ");
|
||
}
|
||
|
||
return msg;
|
||
}
|
||
|
||
function setPageTitle(title, setparent) {
|
||
var win = window;
|
||
if (setparent) {
|
||
while (win.parent && win != win.parent)
|
||
win = win.parent;
|
||
}
|
||
win.document.title = title;
|
||
}
|
||
|
||
function setAttachemntIcon(filetype, sdown) {
|
||
if ([".doc", ".docx"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/word.jpg')
|
||
} else if ([".xls", ".xlsx"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/excel.jpg')
|
||
} else if ([".ppt", ".pptx"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/ppt.jpg')
|
||
} else if ([".pdf", ".xps"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/pdf.jpg')
|
||
} else if ([".mp4", ".mov", ".avi", ".mkv", ".3gp", ".ts", ".m2ts"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/vedio.jpg')
|
||
} else if ([".zip", ".rar", ".7z"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/zip.jpg')
|
||
} else if ([".msg"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/msg.jpg')
|
||
} else if ([".xml"].indexOf(filetype) >= 0) {
|
||
sdown.attr('src', '../img/icon/xml.jpg')
|
||
} else {
|
||
sdown.attr('src', '../img/icon/txt.jpg')
|
||
}
|
||
}
|
||
|
||
function getCurrentDate() {
|
||
var s = "";
|
||
_network.commonpagequery(14, "", function (data) {
|
||
s = data;
|
||
}, function (err) {
|
||
}, true, true);
|
||
|
||
return s;
|
||
};
|
||
|
||
|
||
function hidePanels() {
|
||
$('.panel_holder').each(function () {
|
||
var _this = $(this);
|
||
if (_this.is(':visible')) {
|
||
_this.stop().css('opacity', 0).hide();
|
||
}
|
||
});
|
||
$('.button button').removeClass('selected');
|
||
}
|
||
|
||
function showmaskbg(flag, noanimation) {
|
||
if (window.parent && typeof window.parent.onmaskbg == 'function') {
|
||
window.parent.onmaskbg(flag, noanimation);
|
||
}
|
||
$('#mask_bg').children().hide();
|
||
if (noanimation) {
|
||
$('#mask_bg').css('display', flag ? '' : 'none');
|
||
} else {
|
||
if (flag) {
|
||
$('#mask_bg').fadeIn(100);
|
||
} else {
|
||
$('#mask_bg').fadeOut(100);
|
||
}
|
||
}
|
||
}
|
||
|
||
function showloading(flag, noanimation) {
|
||
if (window.parent && typeof window.parent.onmaskbg == 'function') {
|
||
window.parent.onmaskbg(flag, noanimation);
|
||
}
|
||
$('#mask_bg').children().show();
|
||
if (noanimation) {
|
||
$('#mask_bg').css('display', flag ? '' : 'none');
|
||
} else {
|
||
if (flag) {
|
||
$('#mask_bg').fadeIn(100);
|
||
} else {
|
||
$('#mask_bg').fadeOut(100);
|
||
}
|
||
}
|
||
}
|
||
|
||
function showConfirm(msg, title, fok, fcancel) {
|
||
if (window.parent && typeof window.parent.showconfirm == 'function') {
|
||
window.parent.showconfirm(msg, title, fok, fcancel);
|
||
} else {
|
||
showmaskbg(true);
|
||
_dialog.showConfirm(msg, title, function (e) {
|
||
showmaskbg(false);
|
||
if (typeof fok === 'function') {
|
||
fok(e);
|
||
}
|
||
}, function () {
|
||
showmaskbg(false);
|
||
});
|
||
}
|
||
}
|
||
|
||
function showAlert(msg, title, icon, next) {
|
||
if (window.parent && typeof window.parent.showalert == 'function') {
|
||
window.parent.showalert(msg, title, icon, next);
|
||
} else {
|
||
_dialog.showAlert(msg, title, icon, next);
|
||
}
|
||
} |