From b70ea28f51757ed39992d5a71b2e15b1d4cc7c7d Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期四, 27 十一月 2025 16:21:45 +0800
Subject: [PATCH] xml中筛选条件匹配方法修改
---
north-glass-erp/northglass-erp/src/components/BrokenReportTemplate.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/north-glass-erp/northglass-erp/src/components/BrokenReportTemplate.vue b/north-glass-erp/northglass-erp/src/components/BrokenReportTemplate.vue
index 7273676..005e858 100644
--- a/north-glass-erp/northglass-erp/src/components/BrokenReportTemplate.vue
+++ b/north-glass-erp/northglass-erp/src/components/BrokenReportTemplate.vue
@@ -11,6 +11,7 @@
import {useI18n} from "vue-i18n";
import useOrderInfoStore from "@/stores/sd/order/orderInfo";
import companyInfo from "@/stores/sd/companyInfo";
+import {VxeUI} from "vxe-pc-ui";
const { t } = useI18n()
const xGrid = ref()
const company = companyInfo()
@@ -207,7 +208,9 @@
}
}
-
+const handleCellDblClick = ({ row, column, cell, $event }) => {
+ VxeUI.clipboard.copy(row[column.property])
+}
</script>
<template>
@@ -236,6 +239,7 @@
ref="xGrid"
v-bind="gridOptions"
v-on="gridEvents"
+ @cell-dblclick="handleCellDblClick"
>
<!-- 涓嬫媺鏄剧ず鎵�鏈変俊鎭彃妲�-->
<template #content="{ row }">
--
Gitblit v1.8.0