|
|
★ 小木虫: 金币+0.5, 给个红包,谢谢回帖
链接很多的,譬如:
tb_show("查看评议人指派信息", ctx + "/review/evview/exp-assign-view?psnCode="
+ psnCode + "&grantCode=" + grantCode + "&atcCodes=" + atcCodes
+ "&sameGrantCode=" + sameGrantCode + "&atvtype=" + atvtype + "&TB_iframe=true&height=" + heigth + "&width=" + width, false);
}
function expAssignView2(psnCode,groupCode, grantCode, atcCodes, atvtype) {
tb_show("查看评议人指派信息", ctx + "/review/evview/exp-assign-view?psnCode="
+ psnCode + "&groupCode=" + groupCode + "&grantCode=" + grantCode + "&atcCodes=" + atcCodes + "&atvtype=" + atvtype + "&TB_iframe=true&height=550&width=900", false);
}
function expBriefView(psnCode) {
tb_show("查看评议人简介", ctx + "/review/evview/exp-brief-view?psnCode="
+ psnCode + "&TB_iframe=true&height=250&width=500", false);
}
function expView(psnCode) {
psnView(psnCode);
/*
tb_show("查看评议人详情", ctx + "/review/evview/exp-view?psnCode=" + psnCode
+ "&TB_iframe=true&height=460&width=900", false);
*/
}
function groupExpView(groupCode, atvtype) {
tb_show("查看分组评议人信息", ctx + "/review/evview/group-exp-view?groupCode="
+ groupCode + "&atvtype=" + atvtype + "&TB_iframe=true&height=500&width=950", false);
}
function groupAssignedExpView(groupCode, atvtype) {
tb_show("查看分组评议人信息", ctx + "/review/evview/groupassigned-exp-view?groupCode="
+ groupCode + "&atvtype=" + atvtype + "&TB_iframe=true&height=500&width=950", false);
}
function groupPrpView(groupCode,atvtype) {
var arrayPageSize = tb_getPageSize();
var heigth = arrayPageSize[1] - 100;
var width = arrayPageSize[0] - 40;
if(width > 1000){
heigth = 500;
width = 985;
}
//type=1 结题项目评估 不存在type为评议
tb_show("查看分组项目信息", ctx + "/review/evview/group-prp-view?groupCode="
+ groupCode + "&atvtype="+atvtype+"&TB_iframe=true&height=" + heigth + "&width=" + width, false);
}
function prpAssignView(keyCode,type) {
var arrayPageSize = tb_getPageSize();
var heigth = arrayPageSize[1] - 100;
var width = arrayPageSize[0] - 40;
if(width > 1000){
heigth = 445;
width = 950;
}
//type=1为结题后项目 null 表示为评议
tb_show("查看项目指派信息", ctx + "/review/evview/prp-assign-view?keyCode=" + keyCode
+ "&atvtype="+type+"&TB_iframe=true&height=" + heigth + "&width=" + width, false);
}
function expPrpView(psnCode, atcCodes, flag, grantCode) {
tb_show("查看评议人参与项目信息", ctx + "/review/evview/exp-prp-view?psnCode=" + psnCode
+ "&atcCodes=" + atcCodes + "&flag=" + flag + "&grantCode=" + grantCode
+ "&TB_iframe=true&height=445&width=880", false);
}
function prpBriefView(keyCode) {
tb_show(
"查看项目简要",
ctx
+ "/review/evview/prp-brief-view?prpCode='+keyCode+'&TB_iframe=true&height=250&width=500",
true);
}
/**查看项目详情**/
function prpView(keyCode) {
var width = $(document).width();
if(width > 900)
width = 880;
tb_show("查看项目信息", ctx + "/review/evview/prp-view?keyCode=" + keyCode
+ "&TB_iframe=true&height=445&width=880", false);
}
/** 查看申报书详情 */
function evprpView(prpCode, grantCode, subGrantCode) {
var url = ctx + "/proposal/view-prp";
url = url + "?prpCodeStr="+prpCode;
url = url + "&grantCode="+grantCode;
url = url + "&subGrantCode="+subGrantCode;
url = url + "&TB_iframe=true&height=450&width=960";
tb_show("查看项目详情",url, false);
}
function reasonView(extendId) {
tb_show("查看原因", ctx + "/review/evmanage/abnormal-reason?extendId="
+ extendId + "&TB_iframe=true&height=280&width=530", false); |
|