main
kgdxpr 2 years ago
parent 64127f37b9
commit 6696cec0a5

@ -65,6 +65,7 @@
var jobId = GetQueryString("job_id");
var targetId = GetQueryString("target_id");
var statusCode = GetQueryString("status_code");
function unique(x) {
@ -83,7 +84,7 @@
$.ajax({
url: "/QingLong/collect/getJob?job_id=" + jobId + "&target_id=" + targetId,
url: "/QingLong/collect/getJob?job_id=" + jobId + "&target_id=" + targetId + "&status_code=" + statusCode,
async: false,
type: 'GET',
success: function (res) {
@ -194,7 +195,7 @@
//获取表单数据
$.ajax({
url: "/QingLong/collect/getFormFillJob?job_id=" + jobId,
url: "/QingLong/collect/getFormFillJob?job_id=" + jobId + "&status_code=" + statusCode,
async: false,
type: 'GET',
dataType: "json",

@ -166,7 +166,10 @@
area: ['860px', '100%'],
shade: 0.1,
shadeClose: true,
content: "../form/view_bureau.html?job_id=" + obj.data.job_id + "&target_id=" + obj.data.target_id
content: "../form/view_bureau.html?job_id=" + obj.data.job_id + "&target_id=" + obj.data.target_id + "&status_code=" + obj.data.status_code,
end: function () {
tableRender();
}
});
} else {
var base64Url = Base64.encode('/QingLong/collect/getJobBureauFillInfo?job_id=' + obj.data.job_id + '&bureau_id=' + obj.data.target_id + '&type_id=2');

@ -195,7 +195,10 @@
area: ['1000px', '100%'],
shade: 0.1,
shadeClose: true,
content: "../form/view.html?job_id=" + obj.data.job_id + "&target_id=" + obj.data.target_id
content: "../form/view.html?job_id=" + obj.data.job_id + "&target_id=" + obj.data.target_id + "&status_code=" + obj.data.status_code,
end: function () {
tableRender();
}
});
} else {
var base64Url = Base64.encode('/QingLong/collect/getJobBureauFillInfo?job_id=' + obj.data.job_id + '&type_id=2');

Loading…
Cancel
Save