| | |
| | | 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) { |