From d2b3151670fb834fce5bf86fab0580b560fad5e1 Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Wed, 24 May 2023 17:30:20 +0800 Subject: [PATCH] =?UTF-8?q?=20=E4=BF=AE=E5=A4=8D=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E5=8F=AF=E4=BB=A5=E8=BE=93=E5=85=A5=E8=B4=9F=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/productEdit.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/basic/product/productEdit.vue b/src/views/basic/product/productEdit.vue index c251d72a..96027f24 100644 --- a/src/views/basic/product/productEdit.vue +++ b/src/views/basic/product/productEdit.vue @@ -678,6 +678,10 @@ export default { handleChange() { if (this.editQuery.recentDateTime > 30) { this.$message.error("近效期预警时间必须小于等于30!!!"); + this.editQuery.recentDateTime = 30; + } + if (this.editQuery.recentDateTime < 0) { + this.$message.error("近效期预警时间必须大于等于0!!!"); this.editQuery.recentDateTime = 0; } },