From 92f48fea04ed14d188652afa6bf11f3d6f940b5c Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期四, 16 七月 2026 10:42:33 +0800
Subject: [PATCH] Merge branch 'dev_pro2.0' of http://114.132.189.42:9002/r/mom-pro2-before into dev_pro2.0
---
src/views/wls/arrivalnotice/modules/line-list.vue | 24 +++++++++++++++++++++++-
1 files changed, 23 insertions(+), 1 deletions(-)
diff --git a/src/views/wls/arrivalnotice/modules/line-list.vue b/src/views/wls/arrivalnotice/modules/line-list.vue
index a48316f..29a152a 100644
--- a/src/views/wls/arrivalnotice/modules/line-list.vue
+++ b/src/views/wls/arrivalnotice/modules/line-list.vue
@@ -6,9 +6,11 @@
import { computed } from 'vue';
+import { useRouter } from 'vue-router';
+
import { useVbenModal } from '@vben/common-ui';
-import { message } from 'ant-design-vue';
+import { Button, message } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
@@ -24,6 +26,8 @@
formType: FormType;
noticeId: number;
}>();
+
+const router = useRouter();
const isEditable = computed(() =>
// 鏄惁鍙紪杈戞槑缁嗚
@@ -62,6 +66,13 @@
handleRefresh();
} finally {
hideLoading();
+ }
+}
+
+/** 璺宠浆 IQC 妫�楠屽崟璇︽儏 */
+function handleOpenIqc(row: MesWmArrivalNoticeLineApi.ArrivalNoticeLine) {
+ if (row.iqcId) {
+ router.push({ path: '/mes/qc/iqc', query: { id: row.iqcId } });
}
}
@@ -111,6 +122,17 @@
]"
/>
</template>
+ <template #iqcCode="{ row }">
+ <Button
+ v-if="row.iqcCode"
+ size="small"
+ type="link"
+ @click="handleOpenIqc(row)"
+ >
+ {{ row.iqcCode }}
+ </Button>
+ <span v-else>-</span>
+ </template>
<template #actions="{ row }">
<TableAction
:actions="[
--
Gitblit v1.9.3