| | |
| | | handler(newVal) { |
| | | if (newVal && newVal.rgvNo && newVal.rgvNo != 0) { |
| | | this.activeNames = newVal.rgvNo; |
| | | this.searchRgvNo = newVal.rgvNo; |
| | | const idx = this.rgvList.findIndex(i => i.rgvNo == newVal.rgvNo); |
| | | if (idx >= 0) { this.currentPage = Math.floor(idx / this.pageSize) + 1; } |
| | | } |
| | |
| | | openCrn(id) { |
| | | this.crnParam.crnNo = id; |
| | | this.activateCard = 'crn'; |
| | | console.log(id); |
| | | }, |
| | | openDualCrn(id) { |
| | | this.dualCrnParam.crnNo = id; |
| | | this.activateCard = 'dualCrn'; |
| | | console.log(id); |
| | | |
| | | }, |
| | | openRgv(id) { |
| | | this.rgvParam.rgvNo = id; |