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; } },