From 558dae4a18d393ac38daa43a354e8bc9a22e4e26 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期四, 02 十一月 2023 16:52:59 +0800
Subject: [PATCH] 班次安排座位
---
zhengcaioa/zhengcaioa/Views/SalaryCheck/Index.cshtml | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/zhengcaioa/zhengcaioa/Views/SalaryCheck/Index.cshtml b/zhengcaioa/zhengcaioa/Views/SalaryCheck/Index.cshtml
index 395c424..4950b16 100644
--- a/zhengcaioa/zhengcaioa/Views/SalaryCheck/Index.cshtml
+++ b/zhengcaioa/zhengcaioa/Views/SalaryCheck/Index.cshtml
@@ -59,7 +59,7 @@
{ label: '琛ュ彂宸ヨ祫', name: 'Bufagongzi', labtype: 'txt', hidden: false, width: 60 },
{ label: '鍚堣', name: 'sum_fgz', labtype: 'txt', hidden: false, width: 60 },
- { label: '涓汉绀句繚', name: 'Shebaokou', labtype: 'txt', hidden: false, width: 60 },
+ { label: '绀句繚', name: 'Shebaokou', labtype: 'txt', hidden: false, width: 60 },
{ label: '涓◣', name: 'Geshui', labtype: 'txt', hidden: false, width: 60 },
{ label: '鐢佃瘽璐�', name: 'Dianhuafei', labtype: 'txt', hidden: false, width: 60 },
{ label: '缂哄嫟', name: 'Queqin', labtype: 'txt', hidden: false, width: 60 },
@@ -104,11 +104,29 @@
});
+
+ var _pageSearch = function () {
+ $("#jqGrid").jqGrid('setGridParam', {
+ url: '/SalaryCheck/GetList', postData: jsons, page: 1
+ }); //閲嶆柊杞藉叆
+ var jsons = GetSearchEnd();
+ if (jsons == false) {
+ msg.info("璇峰綍鍏ユ煡璇㈡潯浠�");
+ return false;
+ }
+ LoadGrid(jsons);
+ }
+
+
function getNowFormatDate() {
var date = new Date();
var seperator1 = "-";
var year = date.getFullYear();
var month = date.getMonth();
+ if (month == 0) {
+ year = year - 1;
+ month = 12;
+ }
var strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
--
Gitblit v1.9.1