Browse Source

Merge branch 'feature_20251009_金牌店档案填写校验' into uat(dev)

zhujindu 1 month ago
parent
commit
434826a46d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/views/storeManagement/JPattributeEditor.vue

+ 4 - 4
src/views/storeManagement/JPattributeEditor.vue

@@ -323,8 +323,8 @@ export default {
         this.totalSalesAmountMsg = '最小值1';
         return true;
       }
-      if (value > 10000) {
-        this.totalSalesAmountMsg = '最大值10000';
+      if (value > 1000) {
+        this.totalSalesAmountMsg = '最大值1000';
         return true;
       }
       return false;
@@ -342,8 +342,8 @@ export default {
         this.constructionYearNumMsg = '最小值1';
         return true;
       }
-      if (value > 100) {
-        this.constructionYearNumMsg = '最大值100';
+      if (value > 10000) {
+        this.constructionYearNumMsg = '最大值10000';
         return true;
       }
       return false;