ZN
2026-03-10 b461c6527e3a85e9af59e7680e792bcb5ffb6b7e
src/views/productionManagement/productionProcess/index.vue
@@ -179,7 +179,7 @@
        tableLoading.value = false;
        tableData.value = res.data.records.map(item => ({
          ...item,
          typeText: item.type !== undefined ? (item.type === 0 ? "计时" : "计件") : "",
          typeText: item.type !== undefined && item.type !== null ? (item.type === 0 ? "计时" : "计件") : "",
        }));
        page.total = res.data.total;
      })