From adc3a056c2be8485c976dddf30bab4f9afcc90c6 Mon Sep 17 00:00:00 2001 From: "446052889@qq.com" <446052889@qq.com> Date: Wed, 9 Nov 2022 15:57:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=B9=E5=A4=84=E7=90=86=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E5=BD=A2=E7=8A=B6=E9=83=A8=E5=88=86=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=A0=A1=E9=AA=8C=E7=B1=BB=E5=9E=8B=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E5=8C=B9=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/create/check-shape.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/com.actionsoft.apps.coe.pal.batch/src/views/create/check-shape.vue b/com.actionsoft.apps.coe.pal.batch/src/views/create/check-shape.vue index acf5763..a9d1e8b 100644 --- a/com.actionsoft.apps.coe.pal.batch/src/views/create/check-shape.vue +++ b/com.actionsoft.apps.coe.pal.batch/src/views/create/check-shape.vue @@ -105,6 +105,7 @@ export default { blankCount: 0, errCount: 0, noMatchCount: 0, + noMatchTypeCount: 0, noPermCount: 0, moreMatchCount: 0, readonlyCount: 0 @@ -149,6 +150,8 @@ export default { that.checkResult.errCount = errCount; let noMatchCount = data.noMatchCount;// 校验不匹配数 that.checkResult.noMatchCount = noMatchCount; + let noMatchTypeCount = data.noMatchTypeCount;// 模型类型与节点类型不匹配 + that.checkResult.noMatchTypeCount = noMatchTypeCount; let noPermCount = data.noPermCount;// 没有写权限数 that.checkResult.noPermCount = noPermCount; let moreMatchCount = data.moreMatchCount;// 匹配大于一个数 @@ -175,6 +178,9 @@ export default { if (noMatchCount > 0) { result += ',不匹配' + noMatchCount + '条'; } + if (noMatchTypeCount > 0) { + result += ',类型不匹配' + noMatchTypeCount + '条'; + } if (noPermCount > 0) { result += ',没权限' + noPermCount + '条'; }