|
@@ -170,7 +170,7 @@ $(document).ready(function() {
|
|
|
$('#stamp-upload').change(function () {
|
|
|
const hadstamp = $('#show-stamp .stamp-show').length;
|
|
|
const files = this.files;
|
|
|
- if (hadstamp + files.length >= 5) {
|
|
|
+ if (hadstamp + files.length > 5) {
|
|
|
toastr.error('最多只能5个签章');
|
|
|
return
|
|
|
}
|