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