From 6e8e566f94b5ffdf455dba43b45f5c136b86051c Mon Sep 17 00:00:00 2001
From: zhang_li
Date: Mon, 16 Jun 2025 17:00:30 +0800
Subject: [PATCH] =?UTF-8?q?YT-2754=E3=80=8A=E7=BF=BB=E5=8C=85=E8=AE=B0?=
=?UTF-8?q?=E5=BD=95=E3=80=8B=E7=9A=84=E3=80=90=E6=89=93=E5=8D=B0=E6=A0=87?=
=?UTF-8?q?=E7=AD=BE=E3=80=91=E6=8C=89=E9=92=AE=EF=BC=8C=E5=A6=82=E6=9E=9C?=
=?UTF-8?q?=E5=B7=B2=E7=BB=8F=E7=82=B9=E5=87=BB=E8=BF=87=E6=8C=89=E9=92=AE?=
=?UTF-8?q?=EF=BC=8C=E3=80=90=E6=89=93=E5=8D=B0=E6=A0=87=E7=AD=BE=E3=80=91?=
=?UTF-8?q?=E7=9A=84=E9=A2=9C=E8=89=B2=E5=8F=98=E4=B8=BA=E9=BB=84=E8=89=B2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../packageoverMain/packageoverRecordMain/index.vue | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/src/views/wms/inventoryjobManage/packageManage/packageoverMain/packageoverRecordMain/index.vue b/src/views/wms/inventoryjobManage/packageManage/packageoverMain/packageoverRecordMain/index.vue
index 4e45e85c0..3ae08570a 100644
--- a/src/views/wms/inventoryjobManage/packageManage/packageoverMain/packageoverRecordMain/index.vue
+++ b/src/views/wms/inventoryjobManage/packageManage/packageoverMain/packageoverRecordMain/index.vue
@@ -130,12 +130,21 @@ const butttondata = (row,$index) => {
if(findIndex>-1&&findIndex<$index){
return []
}
- return [defaultButtons.mainListPointBtn(null)] // 标签打印
+ return [defaultButtons.mainListPointBtn({
+ label: t(`ts.打印标签`).replace('ts.', ''),
+ name: 'point',
+ hide: false,
+ type: row.isClick?'warning':'primary',
+ color: '',
+ link: true, // 文本展现按钮
+ hasPermi: ''
+ })] // 标签打印
}
// 列表-操作按钮事件
const buttonTableClick = async (val, row) => {
if (val == 'point') { // 标签打印
+ row.isClick = true
handlePoint(row)
}
}