123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- function modelChangePassword() {
- $("#modal_change_password").modal("show");
- }
- function changePassword() {
- $.ajax({
- url: "/Admin/ChangePassword",
- method: "POST",
- headers: { "Content-Type": "application/json" },
- async: true,
- data: JSON.stringify({
- "JobNo": $("#JobNo").val(),
- "Password": $("#Password").val(),
- "NewPassword": $("#NewPassword").val(),
- "AgainNewPassword": $("#AgainNewPassword").val()
- }),
- success: function (result) {
- if (result.code === 0) {
- $("#modal_change_password").modal("hide");
- } else if (result.code === 1) {
- alert(result.message);
- }
- }
- });
- }
- function formatDate(date, fmt) {
- if (typeof date === 'string') {
- return date;
- }
- if (!fmt) fmt = "yyyy-MM-dd hh:mm:ss";
- if (!date || date == null) return null;
- var o = {
- 'M+': date.getMonth() + 1, // 月份
- 'd+': date.getDate(), // 日
- 'h+': date.getHours(), // 小时
- 'm+': date.getMinutes(), // 分
- 's+': date.getSeconds(), // 秒
- 'q+': Math.floor((date.getMonth() + 3) / 3), // 季度
- 'S': date.getMilliseconds() // 毫秒
- }
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
- for (var k in o) {
- if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
- }
- return fmt
- }
- $("[href='/Line']").click(function () {
- document.cookie = 'lineId=' + '00000000-0000-0000-0000-000000000000'
- document.cookie = 'lineName=' + '总览'
- document.cookie = 'action='
- });
- $(".sidebar-toggle").click(function () {
- });
|