From 9dac1a4948e6bb8da2ded516f625f209606446c8 Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Thu, 29 Jun 2023 18:05:10 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20typos:=20=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=E7=BA=A2=E5=8C=85=E6=A0=A1=E9=AA=8C=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/redPackets/rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/redPackets/rules.js b/src/components/redPackets/rules.js index 022e74f2..2f2d7423 100644 --- a/src/components/redPackets/rules.js +++ b/src/components/redPackets/rules.js @@ -181,12 +181,12 @@ export function additionalRules(params, computeMin, computeMax) { } if (computeMax < model.max_denomination) { - Notify.error("随机最大面额不得大于计算最大面额") + Notify.error("随机最大面额不得大于最大面额的最大值") return false } if (computeMin > model.max_denomination) { - Notify.error("随机最大面额不得小于计算最小面额") + Notify.error("随机最大面额不能小于最大面额的最小值") return false }