| | |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | productSeries: null, |
| | | scanObject1: null, |
| | | // scanObject1: 'P0SQ0-01FZ01-1000;T231224116;DBBBBA', |
| | | //scanObject1: null, |
| | | scanObject1: 'P0SQ0-01FZ01-1000;T231224116;DBBBBA', |
| | | scanObject2: 'P0SQ0-041000-1002;T2312020675;DAABBA;S500003', |
| | | axisName: null, |
| | | neckName: null, |
| | |
| | | axisValueextracted() { |
| | | const parts1 = this.from.scanObject1.split(";"); |
| | | if (parts1.length >= 3) { |
| | | const axisValueextracted = parts1[2].substring(3,4); |
| | | //const axisValueextracted = parts1[2].substring(3,4); |
| | | const axisValueextracted = parts1[2]; |
| | | return this.queryParams.axisValue= axisValueextracted; |
| | | |
| | | } |
| | |
| | | neckValueextracted() { |
| | | const parts2 = this.from.scanObject2.split(";"); |
| | | if (parts2.length >= 3) { |
| | | const neckValueextracted = parts2[2].substring(3,4); |
| | | //const neckValueextracted = parts2[2].substring(3,4); |
| | | const neckValueextracted = parts2[2]; |
| | | return this.queryParams.neckValue= neckValueextracted; |
| | | } |
| | | }, |