|
|
@@ -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;
|