发布获取wsid
This commit is contained in:
parent
23bc93931d
commit
b5255bec7f
@ -33,6 +33,7 @@ var stopPageSetting = {
|
|||||||
}
|
}
|
||||||
var isHighSecurity;
|
var isHighSecurity;
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
getWsId();
|
||||||
$('td,th').css('padding-top','0px');
|
$('td,th').css('padding-top','0px');
|
||||||
$('td,th').css('padding-bottom','0px');
|
$('td,th').css('padding-bottom','0px');
|
||||||
// $('#alertMsg').css('background', '#fff');
|
// $('#alertMsg').css('background', '#fff');
|
||||||
@ -51,6 +52,31 @@ $(document).ready(function(){
|
|||||||
// listenCloseEvent();// 关闭窗口执行,关闭窗口/刷新都会造成流程实例被删除,注释掉
|
// listenCloseEvent();// 关闭窗口执行,关闭窗口/刷新都会造成流程实例被删除,注释掉
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//获取wsid
|
||||||
|
function getWsId() {
|
||||||
|
var param = {
|
||||||
|
sid : $("#sid").val(),
|
||||||
|
cmd : "com.actionsoft.apps.coe.pal.publisher_publish_getWsId"
|
||||||
|
}
|
||||||
|
$.ajax({
|
||||||
|
url : "./jd",
|
||||||
|
type : "POST",
|
||||||
|
dataType : "JSON",
|
||||||
|
data : param,
|
||||||
|
success : function(r) {
|
||||||
|
if (r.result == 'ok') {
|
||||||
|
var wsId=$("#WSID").val();
|
||||||
|
if(wsId==""){
|
||||||
|
$("#WSID").val(r.data.wsId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
var paginationSetting = {
|
var paginationSetting = {
|
||||||
pageLimit: pageLimit,
|
pageLimit: pageLimit,
|
||||||
showItem: 10,
|
showItem: 10,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user