huminmin
5 天以前 3126f0ba5c549ae81042daf73b057b74c9e5b61b
工序增加类型
已修改1个文件
2 ■■■ 文件已修改
src/views/productionManagement/productionProcess/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
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;
      })