From efb6b0055d0b02ddc581698ac5a71e5aaa2fe879 Mon Sep 17 00:00:00 2001 From: schry <2433098676@qq.com> Date: Mon, 10 Jul 2023 15:26:27 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=98=E7=82=B9=E5=8D=95=E9=A9=B3=E5=9B=9E?= =?UTF-8?q?=E5=90=8E=E6=8F=90=E7=A4=BA=E6=A1=86=E6=9C=89=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/Navbar.vue | 2 +- src/views/inventory/InvCountOrderAudit.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index 441d93cc..a8b8de03 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -202,7 +202,7 @@ export default { let validatePass2 = (rule, value, callback) => { if (value === "") { callback(new Error("请再次输入密码")); - } else if (value !== this.inputQuery.password) { + } else if (value !== this.inputQuery.passWord) { callback(new Error("两次输入密码不一致!")); } else { callback(); diff --git a/src/views/inventory/InvCountOrderAudit.vue b/src/views/inventory/InvCountOrderAudit.vue index 57e4d8fa..3aa436a7 100644 --- a/src/views/inventory/InvCountOrderAudit.vue +++ b/src/views/inventory/InvCountOrderAudit.vue @@ -328,7 +328,7 @@ export default { updateCountOrderStatus(params).then((res) => { if (res.code === 20000) { this.$message.success("审核通过"); - this.$message.success("已驳回"); + this.$message.warning("已驳回"); this.getList(); this.onRestDetail(); } else {