From 906966590e64e82cec91aa6c825d43b52a28e891 Mon Sep 17 00:00:00 2001 From: Hentua <wangdoubleone@gmail.com> Date: Mon, 08 May 2023 18:09:59 +0800 Subject: [PATCH] fix --- src/main/resources/templates/febs/views/modules/goods/goodsAddNew.html | 4 ++-- src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/goods/goodsAddNew.html b/src/main/resources/templates/febs/views/modules/goods/goodsAddNew.html index b041b83..9d570d5 100644 --- a/src/main/resources/templates/febs/views/modules/goods/goodsAddNew.html +++ b/src/main/resources/templates/febs/views/modules/goods/goodsAddNew.html @@ -336,8 +336,8 @@ form.verify({ integer: [ - /^[1-9]\d*$/ - , '只能输入正整数' + /^[0-9]\d*$/ + , '只能大于0' ] }); diff --git a/src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html b/src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html index e2fd17b..a00f74e 100644 --- a/src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html +++ b/src/main/resources/templates/febs/views/modules/goods/goodsUpdateNew.html @@ -382,8 +382,8 @@ form.verify({ integer: [ - /^[1-9]\d*$/ - , '只能输入正整数' + /^[0-9]\d*$/ + , '只能大于0' ] }); -- Gitblit v1.9.1