huminmin
8 小时以前 3b28a3183baf6c4d864405dcfd5d8e7a52a3f046
src/views/productionManagement/processRoute/index.vue
@@ -76,8 +76,16 @@
    prop: "productName",
  },
  {
    label: "产品图纸编号",
    prop: "drawingNumber",
  },
  {
    label: "规格名称",
    prop: "model",
  },
  {
    label: "BOM编号",
    prop: "bomNo",
  },
  {
    label: "描述",
@@ -166,7 +174,14 @@
  router.push({
    path: '/productionManagement/processRouteItem',
    query: {
      id: row.id
      id: row.id,
      processRouteCode: row.processRouteCode || '',
      drawingNumber: row.drawingNumber || "",
      productName: row.productName || '',
      model: row.model || '',
      bomNo: row.bomNo || '',
      description: row.description || '',
      type: 'route',
    }
  })
};