diff --git a/src/views/hazard_investigation/inventory_troubleshooting/index.vue b/src/views/hazard_investigation/inventory_troubleshooting/index.vue
index 91e8fc8..626956f 100644
--- a/src/views/hazard_investigation/inventory_troubleshooting/index.vue
+++ b/src/views/hazard_investigation/inventory_troubleshooting/index.vue
@@ -190,7 +190,7 @@ const fnInspect = (ID, LIST_TYPE) => {
path:
LIST_TYPE === "1"
? "/hazard_investigation/inventory_troubleshooting/inspect"
- : "/hazard_investigation/inventory_troubleshooting/standard_inspect",
+ : "/hazard_investigation/inventory_troubleshooting/inspect_custom",
query: { ID },
});
};
diff --git a/src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue b/src/views/hazard_investigation/inventory_troubleshooting/inspect_custom.vue
similarity index 97%
rename from src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue
rename to src/views/hazard_investigation/inventory_troubleshooting/inspect_custom.vue
index d116bcf..f4d0a67 100644
--- a/src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue
+++ b/src/views/hazard_investigation/inventory_troubleshooting/inspect_custom.vue
@@ -41,14 +41,7 @@
-
-
-
-
- 选择
- 填写
-
-
+
{
else return false;
};
const fnQualified = async (index, row) => {
+ row.CHECK_RESULT = row.CHECK_QUALIFIED;
if (row.HASHIDDEN > 0) return;
data.qualifiedDialog.visible = true;
await nextTick();
@@ -497,6 +491,7 @@ const fnSubmit = debounce(
item.CUSTOM_ITEM_ID = inspectionList.value[i].CUSTOM_ITEM_ID;
item.ISNORMAL = inspectionList.value[i].ISNORMAL;
item.RECORDITEM_ID = inspectionList.value[i].RECORDITEM_ID;
+ item.CHECK_RESULT = inspectionList.value[i].CHECK_RESULT;
items.push(item);
if (inspectionList.value[i].ISNORMAL === 1)
ids.push(inspectionList.value[i].HIDDEN_ID);
@@ -505,7 +500,7 @@ const fnSubmit = debounce(
if (inspectedList.length > 0) inspectedList.splice(0, 1);
const params = {
ID,
- LIST_NAME: info.value.NAME,
+ CUSTOM_NAME: info.value.NAME,
CHECK_TIME: data.form.CHECK_TIME,
DESCR: data.form.DESCR,
ITEMS: JSON.stringify(items),