2024-08-02 16:34:45 +08:00
|
|
|
var pers = []
|
2024-08-20 15:59:49 +08:00
|
|
|
var table, form, laydate
|
|
|
|
|
|
|
|
|
|
var yjIds, insMonths, ids;
|
|
|
|
|
// 静态数据
|
|
|
|
|
var tableData = [];
|
|
|
|
|
|
|
|
|
|
function setData(data, yjId, insMonth, id) {
|
|
|
|
|
yjIds = yjId;
|
|
|
|
|
insMonths = insMonth;
|
|
|
|
|
ids = id;
|
|
|
|
|
|
|
|
|
|
layui.use(['form', 'layer', 'table', 'laydate'], function() {
|
|
|
|
|
table = layui.table;
|
|
|
|
|
form = layui.form;
|
|
|
|
|
laydate = layui.laydate
|
|
|
|
|
|
|
|
|
|
if (data.length > 0) {
|
|
|
|
|
$('#fgsName').html(data[0].fgsName);
|
|
|
|
|
$('#yjName').html(data[0].yjName);
|
|
|
|
|
$('#insMonth').html(data[0].insMonth);
|
|
|
|
|
setAiDitStatus(data[0].aiDitStatus);
|
|
|
|
|
|
2024-08-24 21:00:12 +08:00
|
|
|
$('#createUser').html(data[0].userName);
|
2024-08-20 15:59:49 +08:00
|
|
|
$('#createTime').html(data[0].createTime);
|
|
|
|
|
//分公司
|
|
|
|
|
if (data[0].aiDitStatuses) {
|
|
|
|
|
// 获取元素
|
|
|
|
|
var element = document.getElementById('aiDitStatuses');
|
|
|
|
|
// 移除旧的类
|
|
|
|
|
element.classList.remove('planAuditStatus3');
|
|
|
|
|
if (data[0].aiDitStatuses == 2) {
|
|
|
|
|
element.classList.add('planAuditStatus2');
|
|
|
|
|
$('#aiDitStatuses').html("审核通过");
|
|
|
|
|
} else if (data[0].aiDitStatuses == 3) {
|
|
|
|
|
element.classList.add('planAuditStatus4');
|
|
|
|
|
$('#aiDitStatuses').html("审核不通过");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$('#auditUserName').html(data[0].auditUserName);
|
|
|
|
|
$('#auditTime').html(data[0].auditTime);
|
|
|
|
|
} else {
|
|
|
|
|
$('#aiDitStatuses').html("");
|
|
|
|
|
$('#auditUserName').html("");
|
|
|
|
|
$('#auditTime').html("待处理");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//总公司
|
|
|
|
|
if (data[0].aiDitStatusTotal) {
|
|
|
|
|
|
|
|
|
|
// 获取元素
|
|
|
|
|
var element = document.getElementById('aiDitStatusTotal');
|
|
|
|
|
// 移除旧的类
|
|
|
|
|
element.classList.remove('planAuditStatus3');
|
|
|
|
|
if (data[0].aiDitStatusTotal == 2) {
|
|
|
|
|
element.classList.add('planAuditStatus2');
|
|
|
|
|
$('#aiDitStatusTotal').html("审核通过");
|
|
|
|
|
} else if (data[0].aiDitStatusTotal == 3) {
|
|
|
|
|
element.classList.add('planAuditStatus4');
|
|
|
|
|
$('#aiDitStatusTotal').html("审核不通过");
|
|
|
|
|
}
|
|
|
|
|
$('#auditUserNameTotal').html(data[0].auditUserNameTotal);
|
|
|
|
|
$('#auditTimeTotal').html(data[0].auditTimeTotal);
|
|
|
|
|
} else {
|
|
|
|
|
$('#aiDitStatusTotal').html("");
|
|
|
|
|
$('#auditUserNameTotal').html("");
|
|
|
|
|
$('#auditTimeTotal').html("待处理");
|
|
|
|
|
}
|
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
|
|
|
tableData.push({
|
|
|
|
|
id: data[i].id,
|
|
|
|
|
proName: data[i].proName,
|
|
|
|
|
yjId: data[i].yjId,
|
|
|
|
|
insMonth: data[i].insMonth,
|
|
|
|
|
|
|
|
|
|
workContent: data[i].workContent,
|
|
|
|
|
stateTime: data[i].stateTime,
|
|
|
|
|
enTime: data[i].enTime,
|
|
|
|
|
dutyUser: data[i].dutyUser,
|
|
|
|
|
supervisor: data[i].supervisor,
|
|
|
|
|
complete: data[i].complete,
|
|
|
|
|
remarks: data[i].remarks,
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
init();
|
|
|
|
|
} else {
|
|
|
|
|
init();
|
|
|
|
|
layer.alert("无数据,请联系管理员", {
|
|
|
|
|
icon: 2
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-08-02 16:34:45 +08:00
|
|
|
}
|
2024-08-20 15:59:49 +08:00
|
|
|
|
|
|
|
|
function setAiDitStatus(status) {
|
|
|
|
|
$("#subComName").empty();
|
|
|
|
|
var text;
|
|
|
|
|
var color;
|
|
|
|
|
var html = "";
|
|
|
|
|
if (status == '2') {
|
|
|
|
|
text = '已通过';
|
|
|
|
|
color = '#19BE6B';
|
|
|
|
|
}
|
2024-08-22 15:05:15 +08:00
|
|
|
if (status == '0'|| status == '4') {
|
2024-08-20 15:59:49 +08:00
|
|
|
text = '待审核';
|
|
|
|
|
color = '#FF9900';
|
|
|
|
|
}
|
|
|
|
|
if (status == '3') {
|
|
|
|
|
text = '未通过';
|
|
|
|
|
color = '#F56C6C';
|
|
|
|
|
}
|
|
|
|
|
if (status == '1') {
|
|
|
|
|
text = '已撤销';
|
|
|
|
|
color = '#999999';
|
|
|
|
|
}
|
|
|
|
|
html += "<span style='display: flex;align-items: center'>"
|
|
|
|
|
html += `<span style='width: 5px;height: 5px;background: ${color};border-radius: 50%'></span> `
|
|
|
|
|
html += `<span>${text}</span>`
|
|
|
|
|
html += "</span>"
|
|
|
|
|
|
|
|
|
|
$("#subComName").append(html);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-08-02 16:34:45 +08:00
|
|
|
/**
|
|
|
|
|
* 初始化数据
|
|
|
|
|
*/
|
2024-08-20 15:59:49 +08:00
|
|
|
function init() {
|
|
|
|
|
// 渲染表格
|
|
|
|
|
table.render({
|
|
|
|
|
elem: '#table',
|
|
|
|
|
skin: 'line', // 表格样式
|
|
|
|
|
cols: [
|
|
|
|
|
[{
|
|
|
|
|
title: '序号',
|
|
|
|
|
field: 'zizeng',
|
|
|
|
|
align: 'center',
|
|
|
|
|
type: 'numbers',
|
|
|
|
|
width: '5%'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'proName',
|
|
|
|
|
title: '线路名称',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'workContent',
|
|
|
|
|
title: '工作内容',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'stateTime',
|
|
|
|
|
title: '计划开始时间',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'enTime',
|
|
|
|
|
title: '计划结束时间',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dutyUser',
|
|
|
|
|
title: '责任人(护线员)',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'supervisor',
|
|
|
|
|
title: '督办人(设备主人)',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'complete',
|
|
|
|
|
title: '完成标准',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'remarks',
|
|
|
|
|
title: '备注',
|
|
|
|
|
align: 'center'
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
data: tableData,
|
|
|
|
|
done: function(res, curr, count, origin) {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2024-08-02 16:34:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//审核通过按钮点击
|
2024-08-20 15:59:49 +08:00
|
|
|
function pass() {
|
|
|
|
|
layer.confirm("是否确定审核通过?", {
|
|
|
|
|
icon: 3
|
|
|
|
|
}, function() {
|
|
|
|
|
// 加载提示
|
|
|
|
|
let loadingMsg = layer.msg('数据上传中,请稍候...', {
|
|
|
|
|
icon: 16,
|
|
|
|
|
scrollbar: false,
|
|
|
|
|
time: 0,
|
|
|
|
|
shade: [0.8, '#393D49']
|
|
|
|
|
});
|
|
|
|
|
// form请求地址
|
|
|
|
|
let formUrl = PATH_URL + "/inspectionPlan/updateDivideExamine";
|
|
|
|
|
$.ajax({
|
|
|
|
|
type: 'POST',
|
|
|
|
|
url: formUrl, // 请求地址
|
|
|
|
|
contentType: "application/json; charset=utf-8",
|
|
|
|
|
data: JSON.stringify({
|
|
|
|
|
"insMonth": insMonths,
|
|
|
|
|
"yjId": yjIds,
|
|
|
|
|
"id": ids,
|
|
|
|
|
"auditStatus": 4
|
|
|
|
|
}),
|
|
|
|
|
success: function(data) {
|
|
|
|
|
layer.close(loadingMsg); // 关闭提示层
|
|
|
|
|
if (data.code == 200) {
|
|
|
|
|
parent.layer.msg("审核成功", {
|
|
|
|
|
icon: 1
|
|
|
|
|
});
|
|
|
|
|
var index = parent.layer.getFrameIndex(window.name); //先得到当前 iframe层的索引
|
|
|
|
|
parent.layer.close(index); //再执行关闭
|
|
|
|
|
} else {
|
|
|
|
|
layer.alert(data.msg);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
error: function(XMLHttpRequest, textStatus, e) {
|
|
|
|
|
layer.close(loadingMsg);
|
|
|
|
|
layer.msg('数据请求发生异常,请稍后重试', {
|
|
|
|
|
icon: 16,
|
|
|
|
|
scrollbar: false
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-08-02 16:34:45 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//审核不通过按钮点击
|
2024-08-20 15:59:49 +08:00
|
|
|
function noPass() {
|
2024-08-02 16:34:45 +08:00
|
|
|
let height = '65%';
|
2024-08-20 15:59:49 +08:00
|
|
|
let width = '41%';
|
2024-08-02 16:34:45 +08:00
|
|
|
var index = layer.open({
|
2024-08-20 15:59:49 +08:00
|
|
|
title: ['审核不通过', 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'],
|
|
|
|
|
type: 2,
|
|
|
|
|
content: './noPassReason.html',
|
|
|
|
|
area: [width, height],
|
|
|
|
|
maxmin: false,
|
|
|
|
|
success: function(layero, index) {
|
|
|
|
|
var myIframe = window[layero.find('iframe')[0]['name']];
|
|
|
|
|
var fnc = myIframe.setData(yjIds, insMonths, ids); //aaa()为子页面的方法
|
|
|
|
|
},
|
2024-08-21 20:27:19 +08:00
|
|
|
end: function(){
|
|
|
|
|
var noPass = localStorage.getItem("noPass");
|
|
|
|
|
if(noPass =="1"){
|
|
|
|
|
parent.layer.msg("添加成功", { icon: 1 });
|
|
|
|
|
var index = parent.layer.getFrameIndex(window.name); //先得到当前 iframe层的索引
|
|
|
|
|
parent.layer.close(index); //再执行关闭
|
|
|
|
|
window.parent.location.reload();
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-08-02 16:34:45 +08:00
|
|
|
});
|
|
|
|
|
}
|