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