Bladeren bron

所有附件上传大小改为限制50M

MaiXinRong 3 maanden geleden
bovenliggende
commit
0fefe8eb62
41 gewijzigde bestanden met toevoegingen van 61 en 61 verwijderingen
  1. 2 2
      app/public/js/advance_audit.js
  2. 2 2
      app/public/js/change_apply_information.js
  3. 1 1
      app/public/js/change_detail.js
  4. 1 1
      app/public/js/change_information.js
  5. 2 2
      app/public/js/change_plan_information.js
  6. 2 2
      app/public/js/change_project_information.js
  7. 1 1
      app/public/js/construction_info.js
  8. 2 2
      app/public/js/financial_pay_detail.js
  9. 2 2
      app/public/js/financial_transfer.js
  10. 2 2
      app/public/js/financial_transfer_tender.js
  11. 2 2
      app/public/js/ledger.js
  12. 2 2
      app/public/js/material_file.js
  13. 1 1
      app/public/js/payment_detail.js
  14. 2 2
      app/public/js/payment_safe.js
  15. 4 4
      app/public/js/profile_cert.js
  16. 2 2
      app/public/js/se_bonus.js
  17. 1 1
      app/public/js/shares/tools_att.js
  18. 1 1
      app/public/js/sr_detail.js
  19. 3 3
      app/public/js/stage.js
  20. 1 1
      app/public/js/stage_pay.js
  21. 1 1
      app/view/advance/modal_audit.ejs
  22. 1 1
      app/view/change/apply_information_modal.ejs
  23. 1 1
      app/view/change/info_modal.ejs
  24. 1 1
      app/view/change/information_modal.ejs
  25. 1 1
      app/view/change/plan_information_modal.ejs
  26. 1 1
      app/view/change/project_information_modal.ejs
  27. 1 1
      app/view/construction/info_modal.ejs
  28. 1 1
      app/view/contract/detail_modal.ejs
  29. 3 3
      app/view/dashboard/msg_add.ejs
  30. 2 2
      app/view/financial/pay_detail_modal.ejs
  31. 1 1
      app/view/financial/transfer_modal.ejs
  32. 1 1
      app/view/financial/transfer_tender_modal.ejs
  33. 1 1
      app/view/ledger/explode_modal.ejs
  34. 1 1
      app/view/material/file_modal.ejs
  35. 1 1
      app/view/payment/detail_modal.ejs
  36. 1 1
      app/view/payment_safe/modal.ejs
  37. 1 1
      app/view/shares/upload_att.ejs
  38. 2 2
      app/view/stage/modal.ejs
  39. 1 1
      app/view/stage/pay_modal.ejs
  40. 1 1
      app/view/stage_extra/bonus_modal.ejs
  41. 1 1
      app/view/stage_rela/detail_modal.ejs

+ 2 - 2
app/public/js/advance_audit.js

@@ -439,8 +439,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext) === -1) {

+ 2 - 2
app/public/js/change_apply_information.js

@@ -835,8 +835,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 1 - 1
app/public/js/change_detail.js

@@ -77,7 +77,7 @@ $(document).ready(() => {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toastr.error('文件大小过大!');
                 return false;
             }

+ 1 - 1
app/public/js/change_information.js

@@ -145,7 +145,7 @@ $(document).ready(() => {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toastr.error('文件大小过大!');
                 return false;
             }

+ 2 - 2
app/public/js/change_plan_information.js

@@ -984,8 +984,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 2 - 2
app/public/js/change_project_information.js

@@ -198,8 +198,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 1 - 1
app/public/js/construction_info.js

@@ -157,7 +157,7 @@ $(function () {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toastr.error('文件大小过大!');
                 return false;
             }

+ 2 - 2
app/public/js/financial_pay_detail.js

@@ -728,8 +728,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 2 - 2
app/public/js/financial_transfer.js

@@ -173,8 +173,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 2 - 2
app/public/js/financial_transfer_tender.js

@@ -190,8 +190,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 2 - 2
app/public/js/ledger.js

@@ -4715,7 +4715,7 @@ $(document).ready(function() {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toastr.error('存在上传文件大小过大!');
                 return false;
             }
@@ -4894,7 +4894,7 @@ $(document).ready(function() {
       const filename = name.substring(0, name.lastIndexOf("."));
       const fileext = name.substr(name.indexOf("."));
       const filesize = file.size;
-      if (filesize > 30 * 1024 * 1024) {
+      if (filesize > 50 * 1024 * 1024) {
           toastr.error('文件大小过大!');
           $('#change-att-btn').val('');
           return false;

+ 2 - 2
app/public/js/material_file.js

@@ -358,8 +358,8 @@ function validateFiles(files) {
         return false
     }
     return files.every(file => {
-        if (file.size > 1024 * 1024 * 30) {
-            toastr.error('文件大小限制为30MB');
+        if (file.size > 1024 * 1024 * 50) {
+            toastr.error('文件大小限制为50MB');
             return false
         }
         if (whiteList.indexOf('.' + file.ext) === -1) {

+ 1 - 1
app/public/js/payment_detail.js

@@ -241,7 +241,7 @@ $(function () {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toastr.error('文件大小过大!');
                 return false;
             }

+ 2 - 2
app/public/js/payment_safe.js

@@ -753,8 +753,8 @@ $(document).ready(function() {
                     toastr.error('未选择上传文件。');
                     return false;
                 }
-                if (file.size > 30 * 1024 * 1024) {
-                    toastr.error('上传文件大小超过30MB。');
+                if (file.size > 50 * 1024 * 1024) {
+                    toastr.error('上传文件大小超过50MB。');
                     return false;
                 }
                 const fileext = '.' + file.name.toLowerCase().split('.').splice(-1)[0];

+ 4 - 4
app/public/js/profile_cert.js

@@ -254,8 +254,8 @@ $(document).ready(function() {
             return
         }
         const filesize = file.size;
-        if (filesize > 30 * 1024 * 1024) {
-            toastr.error('上传的文件大小不能超过30MB!');
+        if (filesize > 50 * 1024 * 1024) {
+            toastr.error('上传的文件大小不能超过50MB!');
             $(this).val('');
             return false;
         }
@@ -290,8 +290,8 @@ $(document).ready(function() {
             return
         }
         const filesize = file.size;
-        if (filesize > 30 * 1024 * 1024) {
-            toastr.error('上传的文件大小不能超过30MB!');
+        if (filesize > 50 * 1024 * 1024) {
+            toastr.error('上传的文件大小不能超过50MB!');
             $(this).val('');
             return false;
         }

+ 2 - 2
app/public/js/se_bonus.js

@@ -179,8 +179,8 @@ $(document).ready(() => {
                     toastr.error('未选择上传文件。');
                     return false;
                 }
-                if (file.size > 30 * 1024 * 1024) {
-                    toastr.error('上传文件大小超过30MB。');
+                if (file.size > 50 * 1024 * 1024) {
+                    toastr.error('上传文件大小超过50MB。');
                     return false;
                 }
                 const fileext = '.' + file.name.toLowerCase().split('.').splice(-1)[0];

+ 1 - 1
app/public/js/shares/tools_att.js

@@ -204,7 +204,7 @@
                     return false;
                 }
                 const filesize = file.size;
-                if (filesize > 30 * 1024 * 1024) {
+                if (filesize > 50 * 1024 * 1024) {
                     toastr.error('存在上传文件大小过大!');
                     return false;
                 }

+ 1 - 1
app/public/js/sr_detail.js

@@ -845,7 +845,7 @@ $(document).ready(() => {
                         return false;
                     }
                     const filesize = file.size;
-                    if (filesize > 30 * 1024 * 1024) {
+                    if (filesize > 50 * 1024 * 1024) {
                         toast('存在上传文件大小过大!', 'error');
                         return false;
                     }

+ 3 - 3
app/public/js/stage.js

@@ -3338,7 +3338,7 @@ $(document).ready(() => {
                         return false;
                     }
                     const filesize = file.size;
-                    if (filesize > 30 * 1024 * 1024) {
+                    if (filesize > 50 * 1024 * 1024) {
                         toast('存在上传文件大小过大!', 'error');
                         return false;
                     }
@@ -4747,7 +4747,7 @@ $(document).ready(() => {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toastr.error('存在上传文件大小过大!');
                 return false;
             }
@@ -4929,7 +4929,7 @@ $(document).ready(() => {
         const filename = name.substring(0, name.lastIndexOf("."));
         const fileext = name.substr(name.indexOf("."));
         const filesize = file.size;
-        if (filesize > 30 * 1024 * 1024) {
+        if (filesize > 50 * 1024 * 1024) {
             toastr.error('文件大小过大!');
             $('#change-att-btn').val('');
             return false;

+ 1 - 1
app/public/js/stage_pay.js

@@ -1284,7 +1284,7 @@ $(document).ready(() => {
                 return false;
             }
             const filesize = file.size;
-            if (filesize > 30 * 1024 * 1024) {
+            if (filesize > 50 * 1024 * 1024) {
                 toast('存在上传文件大小过大!', 'error');
                 return false;
             }

+ 1 - 1
app/view/advance/modal_audit.ejs

@@ -26,7 +26,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <!-- <p><a href="javascript: void(0);" class="btn btn-primary" id="file-modal-target">选择文件</a></p> -->
                 <input type="file" id="file-modal" multiple="multiple">
             </div>

+ 1 - 1
app/view/change/apply_information_modal.ejs

@@ -10,7 +10,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group">
-                    <label for="file-modal">单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</label>
+                    <label for="file-modal">单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</label>
                     <!-- <p><a href="javascript: void(0);" class="btn btn-primary" id="file-modal-target">选择文件</a></p> -->
                     <input type="file" id="file-modal" multiple="multiple">
                 </div>

+ 1 - 1
app/view/change/info_modal.ejs

@@ -920,7 +920,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <p><input value="选择文件" type="file" id="upload-file" multiple /></p>
             </div>
             <div class="modal-footer">

+ 1 - 1
app/view/change/information_modal.ejs

@@ -861,7 +861,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <p><input value="选择文件" type="file" id="upload-file" multiple /></p>
             </div>
             <div class="modal-footer">

+ 1 - 1
app/view/change/plan_information_modal.ejs

@@ -10,7 +10,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group">
-                    <label for="file-modal">单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</label>
+                    <label for="file-modal">单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</label>
                     <!-- <p><a href="javascript: void(0);" class="btn btn-primary" id="file-modal-target">选择文件</a></p> -->
                     <input type="file" id="file-modal" multiple="multiple">
                 </div>

+ 1 - 1
app/view/change/project_information_modal.ejs

@@ -9,7 +9,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <!-- <p><a href="javascript: void(0);" class="btn btn-primary" id="file-modal-target">选择文件</a></p> -->
                 <input type="file" id="file-modal" multiple="multiple">
             </div>

+ 1 - 1
app/view/construction/info_modal.ejs

@@ -10,7 +10,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <p><input value="选择文件" type="file" id="upload-file" multiple /></p>
             </div>
             <div class="modal-footer">

+ 1 - 1
app/view/contract/detail_modal.ejs

@@ -201,7 +201,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group upload-permission">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <br>
                     <input type="file" class="" multiple>
                 </div>

+ 3 - 3
app/view/dashboard/msg_add.ejs

@@ -25,7 +25,7 @@
                                     <label>附件</label>
                                     <input type="hidden" value="<%= msgInfo.id === undefined ? 0 : msgInfo.id %>" id="mid">
                                     <div class="form-group upload-permission">
-                                        <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                                        <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                                         <br>
                                         <input type="file" class="" multiple>
                                     </div>
@@ -149,8 +149,8 @@
             return false
         }
         return files.every(file => {
-            if (file.size > 1024 * 1024 * 30) {
-                toastr.error('文件大小限制为30MB');
+            if (file.size > 1024 * 1024 * 50) {
+                toastr.error('文件大小限制为50MB');
                 return false
             }
             if (whiteList.indexOf('.' + file.ext.toLowerCase()) === -1) {

+ 2 - 2
app/view/financial/pay_detail_modal.ejs

@@ -10,7 +10,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:f0MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <!-- <p><a href="javascript: void(0);" class="btn btn-primary" id="file-modal-target">选择文件</a></p> -->
                 <input type="file" id="file-modal" multiple="multiple">
             </div>
@@ -31,7 +31,7 @@
             <div class="modal-body">
                 <% if (financialPay.filePermission) { %>
                 <div class="form-group upload-permission">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <br>
                     <input type="file" class="" multiple>
                 </div>

+ 1 - 1
app/view/financial/transfer_modal.ejs

@@ -40,7 +40,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group upload-permission">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <br>
                     <input type="file" class="" multiple>
                 </div>

+ 1 - 1
app/view/financial/transfer_tender_modal.ejs

@@ -88,7 +88,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group upload-permission">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <br>
                     <input type="file" class="" multiple>
                 </div>

+ 1 - 1
app/view/ledger/explode_modal.ejs

@@ -266,7 +266,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-file" multiple>
                 </div>
             </div>

+ 1 - 1
app/view/material/file_modal.ejs

@@ -9,7 +9,7 @@
       </button>
         </div>
         <div class="modal-body">
-          <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+          <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                   <p>
                       <input id="upload-fujian-file" type="file" multiple="multiple">
                       <!-- <a href="javascript: void(0);" id="upload-fujian" class="btn btn-primary">选择文件</a> -->

+ 1 - 1
app/view/payment/detail_modal.ejs

@@ -150,7 +150,7 @@
                 </button>
             </div>
             <div class="modal-body">
-                <p>单个文件大小限制:30MB,支持office等文档格式、图片格式、压缩包格式</p>
+                <p>单个文件大小限制:50MB,支持office等文档格式、图片格式、压缩包格式</p>
                 <p><input value="选择文件" type="file" id="upload-file" multiple /></p>
             </div>
             <div class="modal-footer">

+ 1 - 1
app/view/payment_safe/modal.ejs

@@ -8,7 +8,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-file" multiple>
                 </div>
             </div>

+ 1 - 1
app/view/shares/upload_att.ejs

@@ -7,7 +7,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group">
-                    <label for="formGroupExampleInput">大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-file" multiple>
                 </div>
             </div>

+ 2 - 2
app/view/stage/modal.ejs

@@ -206,7 +206,7 @@
             </div>
             <div class="modal-body">
                 <div class="form-group">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="" data-original-title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-file" multiple>
                 </div>
             </div>
@@ -625,7 +625,7 @@
             <div class="modal-body">
                 <div class="form-group">
                     <% if (!ctx.tender.isTourist || (ctx.tender.isTourist && ctx.tender.touristPermission.file) || stage.filePermission) { %>
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <% } %>
                     <div class="d-flex">
                         <% if (!ctx.tender.isTourist || (ctx.tender.isTourist && ctx.tender.touristPermission.file) || stage.filePermission) { %>

+ 1 - 1
app/view/stage/pay_modal.ejs

@@ -77,7 +77,7 @@
             <div class="modal-body">
                 <% if (uploadPermission) { %>
                 <div class="form-group">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-file" multiple>
                 </div>
                 <% } %>

+ 1 - 1
app/view/stage_extra/bonus_modal.ejs

@@ -8,7 +8,7 @@
             <div class="modal-body">
                 <% if (ctx.stage.filePermission) { %>
                 <div class="form-group" id="upload-file-panel">
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-file" multiple>
                 </div>
                 <% } %>

+ 1 - 1
app/view/stage_rela/detail_modal.ejs

@@ -29,7 +29,7 @@
             <div class="modal-body">
                 <div class="form-group">
                     <% if (!ctx.tender.isTourist || (ctx.tender.isTourist && ctx.tender.touristPermission.file) || stage.filePermission) { %>
-                    <label for="formGroupExampleInput">单个文件大小限制:30MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
+                    <label for="formGroupExampleInput">单个文件大小限制:50MB,支持<span data-toggle="tooltip" data-placement="bottom" title="doc,docx,xls,xlsx,ppt,pptx,pdf">office等文档格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="jpg,png,bmp">图片格式</span>、<span data-toggle="tooltip" data-placement="bottom" title="rar,zip">压缩包格式</span></label>
                     <input type="file" class="" id="upload-im-file" multiple>
                     <% } %>
                 </div>