site.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. function modelChangePassword() {
  2. $("#modal_change_password").modal("show");
  3. }
  4. function changePassword() {
  5. $.ajax({
  6. url: "/Admin/ChangePassword",
  7. method: "POST",
  8. headers: { "Content-Type": "application/json" },
  9. async: true,
  10. data: JSON.stringify({
  11. "JobNo": $("#JobNo").val(),
  12. "Password": $("#Password").val(),
  13. "NewPassword": $("#NewPassword").val(),
  14. "AgainNewPassword": $("#AgainNewPassword").val()
  15. }),
  16. success: function (result) {
  17. if (result.code === 0) {
  18. $("#modal_change_password").modal("hide");
  19. } else if (result.code === 1) {
  20. alert(result.message);
  21. }
  22. }
  23. });
  24. }
  25. function formatDate(date, fmt) {
  26. if (typeof date === 'string') {
  27. return date;
  28. }
  29. if (!fmt) fmt = "yyyy-MM-dd hh:mm:ss";
  30. if (!date || date == null) return null;
  31. var o = {
  32. 'M+': date.getMonth() + 1, // 月份
  33. 'd+': date.getDate(), // 日
  34. 'h+': date.getHours(), // 小时
  35. 'm+': date.getMinutes(), // 分
  36. 's+': date.getSeconds(), // 秒
  37. 'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
  38. 'S': date.getMilliseconds() // 毫秒
  39. }
  40. if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
  41. for (var k in o) {
  42. if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
  43. }
  44. return fmt
  45. }
  46. $("[href='/Line']").click(function () {
  47. document.cookie = 'lineId=' + '00000000-0000-0000-0000-000000000000'
  48. document.cookie = 'lineName=' + '总览'
  49. document.cookie = 'action='
  50. });
  51. $(".sidebar-toggle").click(function () {
  52. });