gaoluyang
昨天 cfba74a9db1b77f8e0b5f52fe15c8a1c4bfcaa76
src/views/productionManagement/processRoute/index.vue
@@ -80,6 +80,10 @@
    prop: "model",
  },
  {
    label: "BOM编号",
    prop: "bomNo",
  },
  {
    label: "描述",
    prop: "description",
  },
@@ -158,15 +162,21 @@
};
const showEditModal = (row) => {
  isShowEditModal.value = true
  record.value = row
  isShowEditModal.value = true
};
const showItemModal = (row) => {
  router.push({
    path: '/productionManagement/processRouteItem',
    query: {
      id: row.id
      id: row.id,
      processRouteCode: row.processRouteCode || '',
      productName: row.productName || '',
      model: row.model || '',
      bomNo: row.bomNo || '',
      description: row.description || '',
      type: 'route',
    }
  })
};