From 7327b378abcd7c1b2c932bddc04a0776d8dc8ac3 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期三, 14 一月 2026 11:48:42 +0800
Subject: [PATCH] 工艺路线项目详情改为页面
---
src/views/productionManagement/processRoute/index.vue | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/views/productionManagement/processRoute/index.vue b/src/views/productionManagement/processRoute/index.vue
index 20de386..e909fe9 100644
--- a/src/views/productionManagement/processRoute/index.vue
+++ b/src/views/productionManagement/processRoute/index.vue
@@ -57,7 +57,9 @@
import EditProcess from "@/views/productionManagement/processRoute/Edit.vue";
import RouteItemForm from "@/views/productionManagement/processRoute/ItemsForm.vue";
import {listPage, del} from "@/api/productionManagement/processRoute.js";
+import { useRouter } from 'vue-router'
+const router = useRouter()
const data = reactive({
searchForm: {
model: "",
@@ -65,6 +67,10 @@
});
const { searchForm } = toRefs(data);
const tableColumn = ref([
+ {
+ label: "宸ヨ壓璺嚎缂栧彿",
+ prop: "processRouteCode",
+ },
{
label: "浜у搧鍚嶇О",
prop: "productName",
@@ -157,8 +163,12 @@
};
const showItemModal = (row) => {
- isShowItemModal.value = true
- record.value = row
+ router.push({
+ path: '/productionManagement/processRouteItem',
+ query: {
+ id: row.id
+ }
+ })
};
// 鍒犻櫎
--
Gitblit v1.9.3