From cc33c00a94f0c74c769abf052f32709f56f222cd Mon Sep 17 00:00:00 2001
From: chenhaozhe <cgz@hz-kingdee.com>
Date: 星期四, 27 十一月 2025 08:38:38 +0800
Subject: [PATCH] Merge branch 'master' of http://101.37.171.70:10101/r/MES-WEB-VUEUI
---
src/views/FbStepFoldinBillList/fbStepFoldinBillList.vue | 15 +++++++++++++--
1 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/views/FbStepFoldinBillList/fbStepFoldinBillList.vue b/src/views/FbStepFoldinBillList/fbStepFoldinBillList.vue
index d065d20..3a3311d 100644
--- a/src/views/FbStepFoldinBillList/fbStepFoldinBillList.vue
+++ b/src/views/FbStepFoldinBillList/fbStepFoldinBillList.vue
@@ -669,8 +669,19 @@
this.selectedRows = selection;
},
onBillNoClick(row) {
- const id = row.hmainid || row.HInterID;
- window.open('./Fb_StepFoldinBillEdit.html?OperationType=3&linterid=' + id, '_blank');
+ const table = this.$refs.mainTable;
+ if (table) {
+ try {
+ table.clearSelection();
+ table.toggleRowSelection(row, true);
+ } catch (e) {
+ if (table.setCurrentRow) table.setCurrentRow(row);
+ }
+ }
+ this.selectedRows = [row];
+ this.operationType = '3';
+ this.currentId = row.hmainid || row.HInterID || row.HItemID || '';
+ this.editDialogVisible = true;
},
get_BarCodeDetail() {
if (this.selectedRows.length !== 1) {
--
Gitblit v1.9.1