Commit cd66ddf2 by liuyang

1.文档库授权文档授权回显目录状态

parent c335bfa4
...@@ -312,7 +312,9 @@ $(function () { ...@@ -312,7 +312,9 @@ $(function () {
title: "<div style='text-align: center;'>文档权限管理</div>", title: "<div style='text-align: center;'>文档权限管理</div>",
width: "90%", width: "90%",
height: "90%", height: "90%",
callbackName: editCallback callbackName: function () {
editCallback($("#inqu_status-0-orgParentId").val());
}
}); });
}) })
......
...@@ -64,8 +64,7 @@ let save = function () { ...@@ -64,8 +64,7 @@ let save = function () {
function (e) { function (e) {
var status = e.status; var status = e.status;
if (status !== -1) { if (status !== -1) {
let fileId = $("#inqu_status-0-fileId").val(); parent.JSColorbox.setValueCallback();
parent.JSColorbox.setValueCallback(fileId);
} }
}); });
} }
...@@ -98,7 +97,6 @@ let auth = function () { ...@@ -98,7 +97,6 @@ let auth = function () {
* 授权回调 * 授权回调
*/ */
let authCallback = function (res) { let authCallback = function (res) {
parent.JSColorbox.setValueCallback(); parent.JSColorbox.setValueCallback();
// 刷新页面 // 刷新页面
query(); query();
...@@ -119,9 +117,14 @@ let removeUser = function () { ...@@ -119,9 +117,14 @@ let removeUser = function () {
} }
JSUtils.confirm("确定对勾选中的[" + rows.length + "]条数据做\"取消授权用户\"操作? ", { JSUtils.confirm("确定对勾选中的[" + rows.length + "]条数据做\"取消授权用户\"操作? ", {
ok: function () { ok: function () {
JSUtils.submitGridsData("result", "HPWD003", "removeUser", JSUtils.submitGridsData("result", "HPWD003", "removeUser", true,
true function (e) {
); var status = e.status;
if (status !== -1) {
parent.JSColorbox.setValueCallback();
}
}
)
} }
}); });
} }
...@@ -152,7 +155,7 @@ let copyUser = function () { ...@@ -152,7 +155,7 @@ let copyUser = function () {
* 授权回调 * 授权回调
*/ */
let copyUserCallback = function (res) { let copyUserCallback = function (res) {
parent.JSColorbox.setValueCallback();
} }
/** /**
...@@ -201,28 +204,4 @@ let showAuthButton = function () { ...@@ -201,28 +204,4 @@ let showAuthButton = function () {
} }
} }
}, {async: false}) }, {async: false})
EiCommunicator.send('HPWD001', 'isProjectManager', inInfo, {
onSuccess: function (res) {
let status = res.getStatus();
if (status >= 0 && res.extAttr.isManager == 1) {
$("#AUTH").show();
$("#REMOVE_USER").show();
$("#COPY_USER").show();
$("#SAVE").show();
} else if (status >= 0 && res.extAttr.isProjectManager == 1) {
$("#AUTH").show();
$("#REMOVE_USER").show();
$("#COPY_USER").show();
$("#SAVE").hide();
} else {
$("#SAVE").hide();
$("#AUTH").hide();
$("#REMOVE_USER").hide();
$("#COPY_USER").hide();
}
},
onFail: function (res) {
NotificationUtil("操作失败,原因[" + res.getMsg() + "]", "error");
}
});
} }
\ No newline at end of file
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