From bf4cb4fdbd57f1785cdd1ddeadfb20a835d5fb6f Mon Sep 17 00:00:00 2001 From: lyh <925863403@qq.com> Date: 星期四, 05 六月 2025 15:18:56 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue b/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue index 1057724..bb6f69f 100644 --- a/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue +++ b/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue @@ -71,7 +71,7 @@ <a-divider type="vertical" /> - <a @click="handleDetail(record)">鐢熸垚鏁版帶鍔犲伐绋嬪簭纭琛�</a> + <a @click="handleOpenPrintModal(record)">鐢熸垚鏁版帶鍔犲伐绋嬪簭纭琛�</a> <a-divider type="vertical" /> @@ -89,6 +89,8 @@ <guide-card-batch-modal ref="modalForm" @ok="modalFormOk"></guide-card-batch-modal> <GuideCardBatchModalDrawer ref="modalEditForm" @ok="modalFormOk"></GuideCardBatchModalDrawer> + + <guide-card-print-modal ref="guideCardPrintModal"/> </a-card> </template> @@ -100,6 +102,7 @@ import GuideCardBatchModal from './GuideCardBatchModal' import GuideCardBatchModalDrawer from './GuideCardBatchModal.Style#Drawer.vue' import { getAction } from '@api/manage' + import GuideCardPrintModal from './GuideCardPrintModal' export default { name: 'GuideCardBatchList', @@ -113,6 +116,7 @@ } }, components: { + GuideCardPrintModal, GuideCardBatchModal, GuideCardBatchModalDrawer }, @@ -242,6 +246,11 @@ this.$refs.modalEditForm.title = "涓婁紶/淇敼淇℃伅"; this.$refs.modalEditForm.disableSubmit = false; }, + + handleOpenPrintModal(record){ + this.$refs.guideCardPrintModal.visible = true + this.$refs.guideCardPrintModal.detail = Object.assign({},record) + } } } </script> -- Gitblit v1.9.3