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; } },