main
kgdxpr 2 years ago
parent b6162eff0e
commit ef58739c8b

@ -176,7 +176,7 @@
var targetId = GetQueryString("target_id");
$.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) {

@ -132,7 +132,7 @@
res.data[i].is_finish = 0;
if (res.data[i].target_type_id == 1) {
if (res.data[i].status_code.toString().slice(-1) == "1") {
res.data[i].is_finish = 1;
res.data[i].is_finish = 1;
}
} else {
if (res.data[i].status_code.toString().slice(-1) == "3") {
@ -167,7 +167,7 @@
area: ['750px', '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
});
} else {
var base64Url = Base64.encode('/QingLong/collect/getJobBureauFillInfo?job_id=' + obj.data.job_id + '&bureau_id=' + obj.data.target_id + '&type_id=2');

@ -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 + "&target_id=" + targetId,
url: "/QingLong/collect/getFormFillJob?job_id=" + jobId + "&target_id=" + targetId + "&status_code=" + statusCode,
async: false,
type: 'GET',
dataType: "json",

Loading…
Cancel
Save