Commit e1061311 authored by yanglilong's avatar yanglilong

修复列表

parent 587b8fc5
...@@ -12,4 +12,5 @@ export default { ...@@ -12,4 +12,5 @@ export default {
authorizeUseList: "/backstage/auth/authorizeUseList", //预授权使用列表 authorizeUseList: "/backstage/auth/authorizeUseList", //预授权使用列表
authorizeUseAdd: "/backstage/auth/authorizeUseAdd", //新增预授权使用 authorizeUseAdd: "/backstage/auth/authorizeUseAdd", //新增预授权使用
authorizeSendEmail: "/backstage/auth/authorizeSendEmail", //预授权邮件 authorizeSendEmail: "/backstage/auth/authorizeSendEmail", //预授权邮件
authorizeEmailView: "/backstage/auth/authorizeEmailView", //预览邮件
}; };
...@@ -57,6 +57,11 @@ const AUTHORIZESENDEMAIL = function (data) { ...@@ -57,6 +57,11 @@ const AUTHORIZESENDEMAIL = function (data) {
return req.post(apis.authorizeSendEmail, data); return req.post(apis.authorizeSendEmail, data);
}; };
//预览邮件
const AUTHORIZEVIEWEMAIL = function (data) {
return req.post(apis.authorizeEmailView, data);
};
// 对象数组 // 对象数组
export default { export default {
PATIENTLISTNOPAGE, PATIENTLISTNOPAGE,
...@@ -70,4 +75,5 @@ export default { ...@@ -70,4 +75,5 @@ export default {
AUTHORIZEUSELIST, AUTHORIZEUSELIST,
AUTHORIZEUSEADD, AUTHORIZEUSEADD,
AUTHORIZESENDEMAIL, AUTHORIZESENDEMAIL,
AUTHORIZEVIEWEMAIL,
}; };
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment