From ab8ac3332b2e6c27ce119bf610062f57e36984ee Mon Sep 17 00:00:00 2001 From: dyy <807692433@qq.com> Date: Thu, 12 May 2022 10:22:11 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E9=A2=84?= =?UTF-8?q?=E7=AE=97-=E5=9F=BA=E7=A1=80=E4=BF=A1=E6=81=AF=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=EF=BC=9A=E5=8F=96=E6=B6=88=E7=AE=A1=E7=90=86=E6=8F=90?= =?UTF-8?q?=E9=86=92=E5=AF=B9=E8=B1=A1=E5=8A=9F=E8=83=BD=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Views/FD_BudgetFile/Index.cshtml | 3 --- .../Views/FD_BudgetFile/Index.js | 23 +------------------ .../FD_BudgetFile/FD_BudgetFileService.cs | 5 ---- 3 files changed, 1 insertion(+), 30 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml index ff129895f..585f0a5bc 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.cshtml @@ -36,9 +36,6 @@  删除  打印 -
-  管理提醒对象 -
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js index 768e17d4a..18acfe1b6 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/ReceiveSendFeeManagement/Views/FD_BudgetFile/Index.js @@ -5,7 +5,6 @@ * 描 述:基础信息采集 */ var refreshGirdData; -var keyValueInMessageRemind = request('keyValue');//消息提醒-查看-id var bootstrap = function ($, learun) { "use strict"; var page = { @@ -14,12 +13,6 @@ var bootstrap = function ($, learun) { page.bind(); }, bind: function () { - //消息提醒-查看:按钮隐藏 - if (keyValueInMessageRemind != "" && keyValueInMessageRemind != undefined && keyValueInMessageRemind != null) { - $('.lr-layout-tool > div').hide(); - } else { - $('.lr-layout-tool > div').show(); - } $('#multiple_condition_query').lrMultipleQuery(function (queryJson) { page.search(queryJson); }, 220, 400); @@ -89,20 +82,7 @@ var bootstrap = function ($, learun) { // top.learun.download({ url: top.$.rootUrl + '/LR_SystemModule/Annexes/DownAnnexesFile', param: { fileId: id, __RequestVerificationToken: top.$.lrToken }, method: 'POST' }); //}); - - // 管理提醒对象 - $('#lr_messageRemindPerson').on('click', function () { - learun.layerForm({ - id: 'formInMessageRemindPerson', - title: '管理提醒对象', - url: top.$.rootUrl + '/LR_Desktop/MessageRemindPerson/Form?type=05', - width: 600, - height: 400, - callBack: function (id) { - return top[id].acceptClick(); - } - }); - }); + }, // 初始化列表 initGird: function () { @@ -181,7 +161,6 @@ var bootstrap = function ($, learun) { }, search: function (param) { param = param || {}; - param.keyValueInMessageRemind = keyValueInMessageRemind; $('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) }); }, downLoad: function (fileId) { diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs index 44a5e4cd2..1d9b78473 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FD_BudgetFile/FD_BudgetFileService.cs @@ -56,11 +56,6 @@ namespace Learun.Application.TwoDevelopment.ReceiveSendFeeManagement dp.Add("FileName", "%" + queryParam["FileName"].ToString() + "%", DbType.String); strSql.Append(" AND t.FileName Like @FileName "); } - if (!queryParam["keyValueInMessageRemind"].IsEmpty()) - { - dp.Add("keyValueInMessageRemind", queryParam["keyValueInMessageRemind"].ToString(), DbType.String); - strSql.Append(" AND t.Id = @keyValueInMessageRemind "); - } return this.BaseRepository("CollegeMIS").FindList(strSql.ToString(),dp, pagination); } catch (Exception ex)