@@ -450,7 +450,7 @@ namespace Learun.Application.Message | |||||
string access_token = weixintokenobj.access_token; | string access_token = weixintokenobj.access_token; | ||||
string jsondata = "{\"touser\":\"" + userinfo.OpenIdForWeixin + "\"," + | string jsondata = "{\"touser\":\"" + userinfo.OpenIdForWeixin + "\"," + | ||||
"\"template_id\":\"" + weixintasktempid + "\"," + | "\"template_id\":\"" + weixintasktempid + "\"," + | ||||
"\"url\":\"" + weixintaskurl + "\"," + | |||||
"\"url\":\"" + weixintaskurl + "/#/?page=oa\"," + | |||||
"\"data\":{" + | "\"data\":{" + | ||||
"\"first\": {\"value\":\"待办事项提醒\",\"color\":\"#173177\"}," + | "\"first\": {\"value\":\"待办事项提醒\",\"color\":\"#173177\"}," + | ||||
"\"keyword1\":{\"value\":\"流程待办 \",\"color\":\"#173177\"}," + | "\"keyword1\":{\"value\":\"流程待办 \",\"color\":\"#173177\"}," + | ||||
@@ -248,19 +248,20 @@ export default { | |||||
if (!!param.page) { | if (!!param.page) { | ||||
//通知公告 | //通知公告 | ||||
if (param.page == "notice") { | if (param.page == "notice") { | ||||
this.NAV_TO( | |||||
"/pages/EducationalAdministration/SYS_ReceiveMessage/list" | |||||
); | |||||
return; | |||||
this.NAV_TO("/pages/LR_OAModule/list"); | |||||
} | } | ||||
//邮件 | //邮件 | ||||
if (param.page == "mail") { | if (param.page == "mail") { | ||||
// this.TAB_TO("/pages/home"); | |||||
this.NAV_TO("/pages/EducationalAdministration/SYS_ReceiveMessage/list"); | |||||
} | } | ||||
//OA待办 | //OA待办 | ||||
if (param.page == "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; | return; | ||||
} | } | ||||
}, | }, | ||||