|
@@ -421,7 +421,6 @@ $(function () {
|
|
|
//新增申诉
|
|
|
function addScore(info) {
|
|
|
let param = {};
|
|
|
- console.log(info);
|
|
|
if (info.type === '1') {
|
|
|
param = {
|
|
|
"appealExplain": info.appealExec,
|
|
@@ -539,9 +538,10 @@ $(function () {
|
|
|
if ($(".edit-box .warning").is(":visible")) {
|
|
|
return;
|
|
|
}
|
|
|
+ console.log(info);
|
|
|
const obj = {
|
|
|
appealExplain: $("#delModal #qcInfo").val(),
|
|
|
- appealOperationType: 0,
|
|
|
+ appealOperationType: info.appealOperationType?info.appealOperationType:0,
|
|
|
appealType: 1,
|
|
|
checkId: $(".checker-drop-input").attr("code"),
|
|
|
modeId: info.modelId,
|
|
@@ -552,6 +552,7 @@ $(function () {
|
|
|
casesEntryId: info.casesEntryId,
|
|
|
casesId: info.casesId,
|
|
|
isReject: info.isReject,
|
|
|
+ qcresultDetaiValue:info.score
|
|
|
};
|
|
|
appealItem(obj);
|
|
|
});
|
|
@@ -663,7 +664,6 @@ $(function () {
|
|
|
return;
|
|
|
}
|
|
|
const obj = Object.assign({}, global_selectedFlaw, { msg, score, appealExec, type, explainInfo, userId });
|
|
|
- console.log(obj);
|
|
|
addScore(obj);
|
|
|
});
|
|
|
}
|