huminmin
2026-03-31 de83f5112fecda011bce0192dce152e66bb56f87
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',
    }
  })
};