huminmin
2026-04-02 fc36e9f71f1238e0c4d65ebb897bb54a68204463
src/views/productionManagement/processRoute/index.vue
@@ -80,6 +80,14 @@
    prop: "model",
  },
  {
    label: "料号",
    prop: "materialCode",
  },
  {
    label: "BOM编号",
    prop: "bomNo",
  },
  {
    label: "描述",
    prop: "description",
  },
@@ -166,7 +174,14 @@
  router.push({
    path: '/productionManagement/processRouteItem',
    query: {
      id: row.id
      id: row.id,
      processRouteCode: row.processRouteCode || '',
      productName: row.productName || '',
      model: row.model || '',
      materialCode: row.materialCode || '',
      bomNo: row.bomNo || '',
      description: row.description || '',
      type: 'route',
    }
  })
};