forked from integrated_whb/integrated_whb_vue
parent
855daed2ab
commit
357924a7c0
|
@ -365,7 +365,9 @@ onMounted(() => {
|
||||||
});
|
});
|
||||||
|
|
||||||
const fnResultsSubmit = (CHECK_RESULT, index) => {
|
const fnResultsSubmit = (CHECK_RESULT, index) => {
|
||||||
|
if (CHECK_RESULT) {
|
||||||
inspectionList.value[index].CHECK_RESULT = CHECK_RESULT;
|
inspectionList.value[index].CHECK_RESULT = CHECK_RESULT;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
const fnHiddenSubmit = (currentHiddenId, HIDDENDESCR) => {
|
const fnHiddenSubmit = (currentHiddenId, HIDDENDESCR) => {
|
||||||
const { hiddenType, index } = data.unQualifiedDialog;
|
const { hiddenType, index } = data.unQualifiedDialog;
|
||||||
|
@ -399,7 +401,7 @@ const fnQualified = async (index, row) => {
|
||||||
} else {
|
} else {
|
||||||
data.qualifiedDialog.writeresults = true;
|
data.qualifiedDialog.writeresults = true;
|
||||||
data.qualifiedDialog.form.CHECK_RESULT =
|
data.qualifiedDialog.form.CHECK_RESULT =
|
||||||
row.CHECK_RESULT !== "不涉及" ? row.CHECK_RESULT : "";
|
row.CHECK_RESULT !== "不涉及" ? row.CHECK_RESULT : row.CHECK_QUALIFIED;
|
||||||
}
|
}
|
||||||
data.qualifiedDialog.visible = true;
|
data.qualifiedDialog.visible = true;
|
||||||
data.qualifiedDialog.index = index;
|
data.qualifiedDialog.index = index;
|
||||||
|
|
Loading…
Reference in New Issue