gaoluyang
7 天以前 fe167dd71a1300aeae07522db990d6b3fdb77a0e
src/views/productionManagement/productionProcess/index.vue
@@ -99,6 +99,10 @@
      prop: "name",
    },
    {
      label: "工序类型",
      prop: "typeText",
    },
    {
      label: "工资定额",
      prop: "salaryQuota",
    },
@@ -175,6 +179,7 @@
        tableLoading.value = false;
        tableData.value = res.data.records.map(item => ({
          ...item,
          typeText: item.type !== undefined && item.type !== null ? (item.type === 0 ? "计时" : "计件") : "",
        }));
        page.total = res.data.total;
      })