From 57556b16aafbafebc7f9fc86745ac2ea83e7616d Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 01 七月 2021 14:26:35 +0800 Subject: [PATCH] 流程 请假 销假 待办 已办 我得申请 --- zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml b/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml index eb8e61e..ceaa890 100644 --- a/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml +++ b/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml @@ -161,6 +161,29 @@ } }); + + $.ajax({ + type: "POST", + url: "/WorkFlowTask/CountRemindRecord", + dataType: "json", + global: false, + async: false, + //data: $('form').serializeArray(), + success: function (data) { + // console.log(data); + $("#wfmsgcount").text(data); + if (parseInt(data) > 0) { + $("#showmsgcounts").attr("style", 'font-size:18px; color:#0d9c63;'); + } + else { + $("#showmsgcounts").attr("style", 'font-size: larger;'); + } + }, + error: function () { + parent.layer.msg('澶辫触', { icon: 5 }); + } + }); + }; timerId(); -- Gitblit v1.9.1