Files
EasySoft-ZenTaoPMS/module/user/js/deny.ui.js
T
2023-07-20 16:48:37 +08:00

14 lines
274 B
JavaScript

window.locateLogin = function(obj)
{
let $this = $(obj);
$.getJSON($this.data('url'), function(data)
{
if(typeof data.load != 'undefined') location.href = data.load;
})
}
window.locatePage = function(obj)
{
location.href = $(obj).data('url');
}