1234567891011121314151617181920212223242526272829303132333435363738 |
-
- //登出
- function signout() {
- var url = '/mes/api/staff/signout';
- $.get(url, { t: new Date().getMilliseconds() }, function (res) {
- if (res != '1') {
- alert(res);
- } else {
- window.location.href = '../login/login.html';
- }
- }, 'text');
- }
- //提取cookie
- window.onload = function () {
- var realname = getCookieValue('realname');
- this.document.querySelector('#realname').outerHTML = decodeURI(realname);
- }
- //根据key获取cookie值
- function getCookieValue(key) {
- var cookie = document.cookie;
- if (cookie == null || cookie == undefined)
- return undefined;
- var array = cookie.split(';');
- for (var i = 0; i < array.length; i++) {
- if (array[i].indexOf(key) > 0) {
- return array[i].split('=')[1];
- }
- }
- return undefined;
- }
- //加载菜单
- function loadMenus() {
-
- }
|