From dd8462860e6b7bb3213482afe944cb80a05fedd7 Mon Sep 17 00:00:00 2001 From: liangkun Date: Mon, 22 Feb 2021 10:42:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A8=E9=80=81=E8=B7=B3=E8=BD=AC=E6=94=B9?= =?UTF-8?q?=E9=80=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LR_StrategyInfo/LR_StrategyInfoBLL.cs | 2 +- .../LearunApp-2.2.0/pages/home.vue | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Message/LR_StrategyInfo/LR_StrategyInfoBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Message/LR_StrategyInfo/LR_StrategyInfoBLL.cs index 6469a2655..08106b7f9 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Message/LR_StrategyInfo/LR_StrategyInfoBLL.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Message/LR_StrategyInfo/LR_StrategyInfoBLL.cs @@ -450,7 +450,7 @@ namespace Learun.Application.Message string access_token = weixintokenobj.access_token; string jsondata = "{\"touser\":\"" + userinfo.OpenIdForWeixin + "\"," + "\"template_id\":\"" + weixintasktempid + "\"," + - "\"url\":\"" + weixintaskurl + "\"," + + "\"url\":\"" + weixintaskurl + "/#/?page=oa\"," + "\"data\":{" + "\"first\": {\"value\":\"待办事项提醒\",\"color\":\"#173177\"}," + "\"keyword1\":{\"value\":\"流程待办 \",\"color\":\"#173177\"}," + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue index 220ba5343..671a8eb32 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue @@ -248,19 +248,20 @@ export default { if (!!param.page) { //通知公告 if (param.page == "notice") { - this.NAV_TO( - "/pages/EducationalAdministration/SYS_ReceiveMessage/list" - ); - return; + this.NAV_TO("/pages/LR_OAModule/list"); } //邮件 if (param.page == "mail") { - // this.TAB_TO("/pages/home"); + this.NAV_TO("/pages/EducationalAdministration/SYS_ReceiveMessage/list"); } //OA待办 if (param.page == "oa") { - // this.TAB_TO("/pages/home"); + this.NAV_TO("/pages/nworkflow/myflow/list"); } + //公文下发 + if (param.page == "file") { + this.NAV_TO("/pages/EducationalAdministration/Sys_ReceiveFile/list"); + } return; } },