From 1c703617885275090d69c697e82e61f4940c0bdc Mon Sep 17 00:00:00 2001 From: yyt <306727702@qq.com> Date: 星期二, 28 五月 2024 14:20:29 +0800 Subject: [PATCH] 380新产品,优化 --- jcdm-ui/src/views/main/cfkb/tileMatchKb/index.vue | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/jcdm-ui/src/views/main/cfkb/tileMatchKb/index.vue b/jcdm-ui/src/views/main/cfkb/tileMatchKb/index.vue index 74b7022..d3e8197 100644 --- a/jcdm-ui/src/views/main/cfkb/tileMatchKb/index.vue +++ b/jcdm-ui/src/views/main/cfkb/tileMatchKb/index.vue @@ -172,8 +172,8 @@ 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, @@ -258,7 +258,8 @@ 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; } @@ -268,7 +269,8 @@ 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; } }, -- Gitblit v1.9.3