From fd865638a82d6691a7904ce1aaccff1e050c7c14 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期五, 09 七月 2021 13:18:02 +0800 Subject: [PATCH] 订单管理: 订单数量默认1 列表 订单类别 显示三级 收货人默认客户资料的收货人 订单批量打印 打印需要批量打印 回访:需要增加 接待人,回访情况,用户评价.客户意见, 送货。 送货公司,单号,时间 --- zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml | 32 ++++++++++++++++++++++++++++---- 1 files changed, 28 insertions(+), 4 deletions(-) diff --git a/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml b/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml index cc1b319..ceaa890 100644 --- a/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml +++ b/zhengcaioa/zhengcaioa/Views/Shared/_Layout.cshtml @@ -36,6 +36,7 @@ <link href="~/css/animate.min.css" rel="stylesheet"> <link href="~/css/style.min.css?v=6" rel="stylesheet"> <link href="~/css/plugins/toastr/toastr.min.css" rel="stylesheet"> + </head> <body class="fixed-sidebar full-height-layout gray-bg" style="overflow: hidden"> <div id="wrapper"> @@ -55,7 +56,7 @@ @*@RenderPage("_Layout_Footer.cshtml")*@ @RenderBody() </div> - + <a id="aFlowLink" class="J_menuItem" href="" data-index="0" style="display:none;"></a> @@ -71,7 +72,7 @@ <script src="~/js/plugins/pace/pace.min.js" type="text/javascript"></script> <script src="~/js/plugins/toastr/toastr.min.js" type="text/javascript"></script> <script src="~/js/common-layout.js" type="text/javascript"></script> - <script src="~/js/datehelper.js"></script> + <script src="~/js/datehelper.js"></script> <script type="text/javascript"> @@ -124,7 +125,7 @@ var timerId; // 瀹氭椂鍣╥d var isLock = false; // 鏄惁閿佸畾 - + // 閫�鍑� var logout = function () { if (isLock) { @@ -160,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(); @@ -181,7 +205,7 @@ }) - + function _CloseTab1(taburl) { -- Gitblit v1.9.1